0

我正在使用 asp.net c# 和谷歌地图 api。我希望用户可以在地图上设置路线或标记,我可以将点保存在 sql 中以再次显示它们。

有一些代码@Chad Killingsworth 为路由编写了它,但我怎样才能捕获 lat/lng 并写入数据库? 折线使用谷歌地图 api v3 http://people.missouristate.edu/chadkillingsworth/mapsexamples/snaptoroad.htm捕捉到道路

或者这就是我想要的,但是在 php 中,我怎么能用 asp.net 做到这一点?我怎样才能知道积分和记录分贝?

http://vikku.info/programming/google-maps-v3/draggable-directions/saving-draggable-directions-saving-waypoints-google-directions-google-maps-v3.htm

4

1 回答 1

0

您可以像这样获取值,然后保存该值。

google.maps.event.addListener(地图,“点击”,函数(事件){

                var p = new google.maps.LatLng(event.latLng.lat(), event.latLng.lng());
                marker.setPosition(p);
                p.lng();
                p.lat();   

                });
于 2013-09-11T09:55:59.687 回答