0
  • 我希望能够为我的所有页面仅加载一次 Google.maps API。
  • 然后我希望能够在我的网络应用程序的任何地方使用地理定位或将地图加载到页面中。
  • 问题是我无法弄清楚 API 加载和地图初始化是分开的。这意味着我每次创建地图时都需要加载 API。

我在帖子中进一步引用了我的大部分代码,但我认为以下代码是问题所在。那段代码负责 API 加载,但同时它负责将 initialize() 函数设置为回调函数并调用它。

var script = document.createElement("script");
script.type = "text/javascript";
script.src ="http://maps.googleapis.com/maps/api/js?key=mykey&sensor=false&callback=initialize";
document.body.appendChild(script);

我如何加载一次api,让我们在标题中说,然后每次我转到特定页面时创建一个新地图。无需再次加载地图 API。(请注意,我使用的是 Jquery 移动版,因此我的标头只会在会话中加载一次。)

我收到此错误:

警告:您已在此页面上多次包含 Google Maps API。这可能会导致意外错误。

我想告诉你我的设置。

-我使用谷歌地图 API v3

-我在页面加载后动态加载 API。

-我使用的是 Jquery mobile,这意味着带有谷歌地图的页面只有在您访问它时才会部分重新加载。

-我使用谷歌地图来显示地图和地理定位两件事。

-我在几个页面上使用谷歌地图 api。

我在 3 个不同的地方与地图进行交互:在标头 javascript 中,请参阅下面的代码

  • 标头 javascript

  • 正文中的 javascript

  • 包含地图的主体中的 DIV。

这是我处理加载 API、显示地图、标记等的 javascript 代码:

        <script>
            $('.error').hide();
            //search criterias
            var radius;
            var timerange;
            var type;
            //user position variables
            var userposition = false;
            var mylatitudedegree = "=55.698";
            var mylongitudedegree = "=12.579";
            //map variables
            var mapready = false;
            var map;
            var bound;
            var markersArray = [];
            //array for keeping track of the markers
            var markercenter;
            //hack
            var pageinit = 0;
            var initializer = 0;
            var triggersearch = 0;
            var loadscripts = 0;
            var isgooglemapsloaded = false;

                $( '#soegsagside' ).live( 'pageinit',function(event)
                {
                pageinit++;

                if (navigator.geolocation) {
                    navigator.geolocation.getCurrentPosition(setPosition, function(error) {
                        alert('Din location er ikke tilgængelig! Error code: ' + error.code);
                        userposition = false;
                    }, {
                        maximumAge : 60000,
                        timeout : 10000,
                        enableHighAccuracy : true
                    });
                } 
                else {
                    alert("Din browser tillader ikke, at vise din lokation!");
                    userposition = false;
                }

                loadScript();       

                $("#search_filter_button").click(function() {
                    //hide the "skal udfyldes" labels
                    $('.error').hide();
                    // validate and process form here
                    radius = $("select#choose_radius_select").val();
                    if (radius == "vælg") {
                        $("label#radius_error").show();
                        $("select#choose_radius_select").focus();
                        return false;
                    }
                    timerange = $("select#choose_timerange_select").val();
                    if (timerange == "vælg") {
                        $("label#timerange_error").show();
                        $("select#choose_timerange_select").focus();
                        return false;
                    }
                    type = $("select#vælg_type").val();
                    if (type == "vælg") {
                        $("label#select_type_error").show();
                        $("select#vælg_type").focus();
                        return false;
                    }
                    //------------------post to php script ---------------
                    var dataString = 'radius=' + radius + '&timerange=' + timerange + '&type=' + type + '&mylatitudedegree=' + mylatitudedegree + '&mylongitudedegree=' + mylongitudedegree;
                    $.ajax({
                        type : "POST",
                        url : "soegsagDB.php",
                        data : dataString,
                        success : function(data) {
                            $('#søgeresultater').html(data);
                            $('#søgeresultater').trigger('create');
                            clearOverlays();
                            createtaskmarkers();
                            findCenterOfMarkers();
                            if (userposition) {
                                usergeoposition = new google.maps.LatLng(mylatitudedegree, mylongitudedegree);
                                map.setCenter(usergeoposition);
                                createuserposition(usergeoposition);
                            } else {
                                map.setCenter(markercenter);
                            }
                            expandMapBoundForMarkers()

                        }
                    });
                    //end of post search query to server
                    return false;
                });
                //end of click seach button
            });
            //end of page ready

            function setPosition(position) {
                userposition = true;
                myposition = position.coords;
                mylatitudedegree = position.coords.latitude;
                mylongitudedegree = position.coords.longitude;
                var milli = new Date();
            }

            //function for clearing the markerArray
            function clearOverlays() {
                for (var i = 0; i < markersArray.length; i++) {
                    markersArray[i].setMap(null);
                }
            }

            //Function for initializing the map, which is called when the map is created
            function initialize() {
                initializer++;
                bound = new google.maps.LatLngBounds();

                var mapOptions = {
                    zoom : 13,
                    center : new google.maps.LatLng(55, 12),
                    mapTypeId : google.maps.MapTypeId.ROADMAP
                }

                //Create a map
                map = new google.maps.Map(document.getElementById("map"), mapOptions);
                mapready = true;
                $("#search_filter_button").trigger('click');//Trigger click on the search button
                triggersearch++;
            }

            //create user positio marker
            function createuserposition(usergeoposition) {
                var userPositionMarker = new google.maps.Marker({
                    position : usergeoposition,
                    map : map,
                    title : "Din position",
                });
                markersArray.push(userPositionMarker);
            }

            function createtaskmarkers() {
                //Create the markers of the tasks
                //1. find the task <li> that contain the data and loop through each one
                //2. for each task collect the dato into variables and create markers and infowindows
                //3. calculate center of point
                //4. extendt map area to contain all points

                var data = $.map($('li'), function(element) {
                    if (element.hasAttribute("data-latitude")) {

                        var tempPos = new google.maps.LatLng($(element).attr('data-latitude'), $(element).attr('data-longitude'));
                        var link = $(element).attr('data-link');
                        var title = $(element).attr('data-title');
                        var type = $(element).attr('data-type');
                        var date = $(element).attr('data-date');

                        tempMarker = new google.maps.Marker({
                            position : tempPos,
                            map : map,
                            title : title,
                        });

                        tempMarker.setIcon('http://maps.google.com/mapfiles/ms/icons/blue-dot.png')

                        var tempContentString = '<div style="width: 200px; height: 100px;">' + date + '<br></br>' + '<a href="' + link + '" rel="external"><b>' + type + ' , ' + title + '</b></a>' + '</div>';

                        //Create infowindow
                        var tempInfowindow = new google.maps.InfoWindow({
                            content : tempContentString
                        });
                        //add market to markerArray
                        markersArray.push(tempMarker);
                        //Create event with infowindow
                        google.maps.event.addListener(tempMarker, 'click', function() {
                            tempInfowindow.open(map, this);
                        });
                    }
                });
            }

            function findCenterOfMarkers() {
                //calculate center of markers and change mapcenter to that
                var sumlatitude = 0;
                var sumlongitude = 0;
                for ( position = 0; position < markersArray.length; position++) {
                    sumlatitude += markersArray[position].getPosition().lat();
                    sumlongitude += markersArray[position].getPosition().lat();
                }
                avglatitude = sumlatitude / markersArray.length;
                avglongitude = sumlongitude / markersArray.length;
                markercenter = new google.maps.LatLng(avglatitude, avglongitude);
            }

            function expandMapBoundForMarkers() {
                //Extend bounds for map to fit all markers into map
                for (var i in markersArray) {
                    bound.extend(markersArray[i].getPosition());
                }
                map.fitBounds(bound);
            }

            //loads the google maps api with KEY and appends the script to the document body
            function loadScript() {
                var script = document.createElement("script");
                script.type = "text/javascript";
                script.src = "http://maps.googleapis.com/maps/api/js?key=AIzaSyC8wZ6RmFySy0DnWvrUaA-2OJqcM1_AOIc&sensor=false&callback=initialize";
                document.body.appendChild(script);
            }
            </script>

页面正文中唯一与地图有关的内容。是地图加载到的 DIV。

<div id="map" style="width: 80%; height: 280px; margin: auto; background-color: gray">Kortet loader, vent venligst.</div> <!--alternative for full screen style="position:absolute;top:30px;bottom:50px;left:0;right:0;"-->

API 也加载在一个通用的头脚本中。因为我一般需要在其他页面上加载它。

<script src='http://maps.google.com/maps/api/js?sensor=false'></script>
4

1 回答 1

0
<script type="text/javascript">
      $(document).ready( function () {

        var script = document.createElement("script");
        script.type = "text/javascript";
        script.src = "http://maps.google.com/maps/api/js?sensor=false&callback=mynamespace.init_google_maps";
        document.body.appendChild(script);
    $(document).bind('pageinit', function() {
    //do stuff here that happens each time a new page is loaded

    });
    });
}); 
</script>

api 在 .ready() 中加载一次。您可以在传递给 .bind() 的回调中创建一个新地图,每次加载或插入新页面时都会调用该地图。您可以在 mynamespace 中初始化地图。mynamespace 是页面中包含的 .js 文件

于 2013-02-14T20:06:02.607 回答