ITLec / Dynamics365GoogleMap

MIT License
0 stars 0 forks source link

Need to Display all Address details #1

Closed ITLec closed 7 years ago

ITLec commented 7 years ago

Need to Display all Address details, for example: Country: CountryName City: CityName Area: AArea Name Street: StreetName

dina777 commented 7 years ago

accessing_ui_in events_with_under_details.zip My Solution screen shot image you have to create div in html then update it with the data like this in javascript document.getElementById("info").innerHTML="Latidute : "+latLng.lat()+"
"+"longitude : "+latLng.lng()+"
"+"Full Address :"+address.formatted_address+details; it will be clear with my full example in attachment

ITLec commented 7 years ago

Good Example.