asp.net - Show map on webform C# -
var root = jsonconvert.deserializeobject<rootobject>(text); double latitude = root.data.location.latitude; double longitude = root.data.location.longitude; //http://maps.googleapis.com/maps/api/geocode/xml?address=1600+amphitheatre+parkway,+mountain+view,+ca&sensor=true_or_false var geocoder = new geocoder("aizasyapk_c2q882jgkbhj_tskv_xxxxx"); var address = geocoder.reversegeocode(new latlng(latitude, longitude));
i getting location correctly , need show on map after , if redirect google map not refresh automatically, pleaase guide showing map using address ..
check link may useful
https://forums.asp.net/t/1670688.aspx?google+maps+in+c+web+application
Comments
Post a Comment