页面刷新时谷歌地图保存标记

时间:2018-03-31 09:29:53

标签: javascript google-maps google-maps-api-3

我有以下代码,以便点击地图并获取纬度和经度坐标。单击地图后,标记将出现在该确切点以及标记周围的半径圆。之后,使用坐标创建一个cookie。

 var marker;
        function placeMarker(location) {
            if (marker) {
                marker.setPosition(location);
            } else {
                marker = new google.maps.Marker({
                    position: location,
                    map: map
                });

                var circle = new google.maps.Circle({
                    map: map,
                    radius: 24140,    // 15 miles in metres
                    fillColor: '#08aa23'
                });
                circle.bindTo('center', marker, 'position');
            }

            document.getElementById('lat').value = location.lat();
            document.getElementById('lng').value = location.lng();
            getAddress(location);
            var cookie_val = ('other_lat_lng', location.lat() + "," + location.lng())
            document.cookie = "other_lat_lng=" + escape(cookie_val);
        }

我想知道是否有一种方法可以通过使用坐标cookie在页面刷新上保留标记位置?

0 个答案:

没有答案