允许用户使用Google Map和asp.net设置其位置

时间:2014-12-09 12:45:21

标签: asp.net google-maps google-maps-api-3

我想显示用户的当前位置。之后,我还希望允许用户使用(拖动)标记设置其位置,该标记将在那里可用。

和我们在Google Map上添加地点一样。我知道如何显示标记,但不知道添加位置。我试过谷歌,但没有找到任何解决方案。

我已经使用了Google API来显示标记。

因为我在印度孟买市的Latitude 18.9750Longitude 72.8258。当我打开页面时它会显示我当前的位置。现在,我还希望我可以通过在另一个位置拖动Latitude来更改其LongitudeMarker

1 个答案:

答案 0 :(得分:1)

即使我目前无法自己测试,我也会帮忙。您是否尝试过像这样分配纬度和经度......

 var usa = new google.maps.LatLng(37.09024, -95.712891);
 var brasil = new google.maps.LatLng(-14.235004, -51.92528);
 var argentina = new google.maps.LatLng(-38.416097, -63.616672);

Google API应该有一个类似于google.maps.LatLng的类,其中应该相对简单,从而指定纬度和经度。

我使用了How to set google map marker by latitude and longitude and provide infomation bubble

中的代码