如何在 ubilabs geocomplete 中获取 formatted_address 等?
我使用 ubilabs geocomplete。
https://github.com/ubilabs/geocomplete
http://ubilabs.github.io/geocomplete/docs/
如何获取 formatted_address 等。
我为了获取 LAT 和 LNG,我使用以下代码:
$("#geocomplete").bind("geocode:dragged", function(event, latLng){
$("input[name=lat]").val(latLng.lat());
$("input[name=lng]").val(latLng.lng());
$("#reset").show();
});
但是我需要:
location
location_type
formatted_address
street_number
postal_code
locality
sublocality
country
country_short
administrative_area_level_1
place_id
by ubilabs geocomplete怎么能用?