简体   繁体   English

如何调整我的Google Maps嵌入代码以进行v3 api更改

[英]How can I adapt my google maps embed code for v3 api change

Please find here after the full html code of my website google map. 请在我的网站Google地图的完整html代码之后找到此处。

Since the last version of "My Maps", i have quite the troubles. 自从上一版“我的地图”开始,我就遇到了麻烦。 Since yesterday pins are no more clickable... 从昨天开始,别针不再可点击...

The maps links are no more the same. 地图链接不再相同。 I'm lost; 我迷路了; this code requires days of work without any knowledge of html coding. 此代码需要几天的工作,而无需任何html编码知识。 I have only grabbed portions of it from different places + help of your community. 我只是从不同的地方获取它的一部分+您社区的帮助。

Could someone help me to reset this code to ON and help me to convert : 有人可以帮助我将此代码重置为ON并帮助我进行转换:

old AD : https://maps.google.be/maps/ms?msid=208899208399411894595.0004daddaa7c86a50424c&authuser=0&msa=0&vps=7&hl=fr&ie=UTF8&output=kml 旧广告: https : //maps.google.be/maps/ms?msid=208899208399411894595.0004daddaa7c86a50424c&authuser=0&msa=0&vps=7&hl=fr&ie=UTF8&output=kml

in new AD : https://www.google.com/maps/d/edit?hl=fr&authuser=0&mid=zC0evbx9jVqo.kFYO1Ed47KUg 在新广告中: https : //www.google.com/maps/d/edit?hl=fr&authuser=0&mid=zC0evbx9jVqo.kFYO1Ed47KUg

almost working sample at http://www.mynursery.be http://www.mynursery.be上几乎可以使用的示例

<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>Exemple Google Maps JavaScript API v3</title>
    <script  src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
  </head>

    <div id="carte" style="width: 920px; height: 750px"></div>
    <br>
    <input type='text' id='adresse' value=''>
    <input type='submit' value='Cherchez votre ville !' onClick='rechercheAdresse();'>

    <script type="text/javascript">
        var map;
 var kml = {
    a: {
        name: "CARTE BELGIQUE",
        url: "https://maps.google.com/maps/ms?authuser=0&vps=2&hl=fr&ie=UTF8&msa=0&output=kml&msid=208899208399411894595.0004d24e3bd5bbd990f5d"
    },
b: {
        name: "Accueil familial subventionné",
        url: "https://maps.google.be/maps/ms?msid=208899208399411894595.0004dadda3622da16f8c4&authuser=0&msa=0&vps=2&hl=fr&ie=UTF8&output=kml"
    },
c: {
        name: "Accueil familial autonome",
        url: "https://maps.google.be/maps/ms?msid=208899208399411894595.0004dadda0922a7eaf40d&authuser=0&msa=0&vps=3&hl=fr&ie=UTF8&output=kml"
    },
    d: {
        name: "Accueil collectif subventionné",
        url: "https://maps.google.be/maps/ms?msid=208899208399411894595.0004daddae931fdcdc805&authuser=0&msa=0&vps=5&hl=fr&ie=UTF8&output=kml"
    },
e: {
        name: "Accueil collectif autonome",
        url: "https://maps.google.be/maps/ms?msid=208899208399411894595.0004daddaa7c86a50424c&authuser=0&msa=0&vps=7&hl=fr&ie=UTF8&output=kml"
    },
f: {
        name: "Magasins petite enfance",
        url: "https://maps.google.be/maps/ms?msid=208899208399411894595.0004dadda4c54c245991b&authuser=0&msa=0&vps=2&hl=fr&ie=UTF8&output=kml"
    },
g: {
        name: "Babysitters & Services",
        url: "https://maps.google.be/maps/ms?msid=208899208399411894595.0004dadda5def521b12ea&authuser=0&msa=0&vps=6&hl=fr&ie=UTF8&output=kml"
    },
};
        var marker;
        var geocoder = new google.maps.Geocoder();

        function initialize() {
            var toulouse = new google.maps.LatLng(50.581, 4.568);
            var myOptions = {
                zoom: 8,
              minZoom: 8,
               scrollwheel: false,
                center: toulouse,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            };
            map = new google.maps.Map(document.getElementById("carte"), myOptions);
        createTogglers();};


google.maps.event.addDomListener(window, 'load', initialize);

// the important function... kml[id].xxxxx refers back to the top
function toggleKML(checked, id) {

    if (checked) {

        var layer = new google.maps.KmlLayer(kml[id].url, {
            preserveViewport: true,

        });
        // store kml as obj
        kml[id].obj = layer;
        kml[id].obj.setMap(map);
    }
    else {
        kml[id].obj.setMap(null);
        delete kml[id].obj;
    }

};

function createTogglers() {

    var html = "<form><ul>";
    for (var prop in kml) {
        html += "<li id=\"selector-" + prop + "\"><input type='checkbox' id='" + prop + "'" +
        " onclick='highlight(this,\"selector-" + prop + "\"); toggleKML(this.checked, this.id)' \/>" +
        kml[prop].name + "<\/li>";
    }
    html += "<li class='control'><a href='#' onclick='removeAll();return false;'>" +
    "Remove all layers<\/a><\/li>" +
    "<\/ul><\/form>";

    document.getElementById("toggle_box").innerHTML = html;
};

function removeAll() {
    for (var prop in kml) {
        if (kml[prop].obj) {
            kml[prop].obj.setMap(null);
            delete kml[prop].obj;
        }

    }
};
function highlight(box, listitem) {
    var selected = 'selected';
    var normal = 'normal';
    document.getElementById(listitem).className = (box.checked ? selected: normal);
};

function startup() {
// for example, this toggles kml a on load and updates the menu selector

var checkit = document.getElementById('a');
checkit.checked = true;
toggleKML(checkit, 'a');
highlight(checkit, 'selector1');
 };



google.maps.event.addListener(map, 'click', function(event) {

    marker = new google.maps.Marker({position: event.latLng, map: map});

});


function rechercheAdresse() {
            var adresse = document.getElementById('adresse').value;
            geocoder.geocode({
                address: adresse
            }, function(results, status) {
                if (status == google.maps.GeocoderStatus.OK) {
                    map.setCenter(results[0].geometry.location);
                    map.setZoom(12);
                    marker = new google.maps.Marker({
                        position: results[0].geometry.location,
                        clickable: false,
                        map: map
                    });
                } else {
                    alert('Result not find !');
                }
            });
        }
    </script>
  <style type="text/css">
.selected { font-weight: bold; }
</style>


<body onload="initialize();startup();">
<div id="toggle_box" style="position: absolute; top: 500px; right: 650px; padding: 10px; background: #fff; z-index: 5; "></div>
</html>

Not exactly sure what you are looking for... but considering the map in new vs old and also running this code snippet you have attached in the question, When executed doesn't shows the markers that are there in the old website. 不完全确定您要查找的内容...,但是考虑新旧地图,并运行您在问题中附加的代码段,执行后不会显示旧网站中的标记。 They are sort of custom markers that can be added with changing the code. 它们是可以在更改代码时添加的自定义标记。 For that please refer to this link . 为此,请参考此链接

In the initialize() method of your code declare the markers so that they will be added in the maps. 在代码的initialize()方法中,声明标记,以便将其添加到地图中。 Here is a example code to display them. 这是显示它们的示例代码。

  <!DOCTYPE html>
<html>
  <head>
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
    <meta charset="utf-8">
    <title>Simple markers</title>
    <style>
      html, body, #map-canvas {
        height: 100%;
        margin: 0px;
        padding: 0px
      }
    </style>
    <script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
    <script>
function initialize() {
  var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
  var mapOptions = {
    zoom: 4,
    center: myLatlng
  }
  var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);

  var marker = new google.maps.Marker({
      position: myLatlng,
      map: map,
      title: 'Hello World!'
  });
}

google.maps.event.addDomListener(window, 'load', initialize);

    </script>
  </head>
  <body>
    <div id="map-canvas"></div>
  </body>
</html>

Hope this would Help!! 希望这会有所帮助!

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何使用Aptana的代码帮助来使用Google Maps API v3? - How can I get Aptana's code assist to work with Google Maps API v3? 如何在自定义地图的名称中添加超链接? 谷歌地图API v3 - How i can add a hyperlink in the name of my custom map? google maps api v3 如何在Google Fusion Tables中解析我的几何字段以缩放到Google Maps API V3中的多边形坐标? - How can I parse my geometry field in Google Fusion Tables to zoom to polygon coordinates in Google Maps API V3? 如何在Google Maps v3 API中更改KmlLayer的颜色? - How to change the color of a KmlLayer in the Google Maps v3 API? 如何在Google Maps API v3中更改MapTypeid? - How to change MapTypeid in Google Maps API v3? 如何更改Google JavaScript Maps API v3中的标记位置? - How to change the marker position in google javascript maps api v3? 如何通过按键盘上的 Enter 按钮使我的 Google Maps api v3 地址搜索栏工作? - How can I make my Google Maps api v3 address search bar work by hitting the enter button on the keyboard? Google Maps API v3:我可以在fitBounds之后设置缩放吗? - Google Maps API v3: Can I setZoom after fitBounds? 单击超链接时,如何使用Google Maps API v3缩放地图? - How do I zoom my map using Google Maps API v3 when I click a hyperlink? Google Maps API v3:如何动态更改标记图标? - Google Maps API v3: How do I dynamically change the marker icon?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM