-1

我有这个代码

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>
    <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
    <script>
        $(document).ready(function () {
            // Define the latitude and longitude positions
            var latitude = parseFloat("00.000000");
            var longitude = parseFloat("00.000000");
            var latlngPos = new google.maps.LatLng(latitude, longitude);
            // Set up options for the Google map
            var myOptions = {
                zoom: 10,
                center: latlngPos,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };
            // Define the map
            map = new google.maps.Map(document.getElementById("map"), myOptions);
            // Add the marker
            var marker = new google.maps.Marker({
                position: latlngPos,
                draggable: true,
                map: map,
                title: "PC Pro Offices"
            });
        });
    </script>

将标记的纬度和经度拖到一两个字段中后,如何获取它。

4

1 回答 1

0

好吧,我发现这个......对于其他有同样问题的人。

于 2012-11-22T21:22:07.697 回答