从链接加载传单地图

Load a leaflet map from a link

本文关键字:地图 单地图 链接 加载      更新时间:2023-09-26

我正试图从链接加载传单地图。如果我单击第一个链接,地图将加载,然后如果我单击第二个链接,则不会加载地图。两个链接调用相同的函数。我不明白发生了什么。提前感谢!

<!DOCTYPE html>
<html>
<head>
    <title>Simple Leaflet Map</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
</head>
<body>
    <a href="#" onclick="showMap('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png')">OpenStreetMap</a><br>
    <a href="#" onclick="showMap('http://{s}.tile.thunderforest.com/landscape/{z}/{x}/{y}.png')">Thunderforest</a><hr>
    <div id="map" style="width: 600px; height: 400px"></div>
    <script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"> </script>
    <script>
        function showMap(url){
            var map = L.map('map').setView([-33.4387,-70.647], 14);
            var mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';           
            L.tileLayer(url, {
            attribution: 'Map data &copy; ' + mapLink,
            maxZoom: 18,
            }).addTo(map);
        }
    </script>
</body>
</html>

您遇到了一个错误,因为您正在尝试初始化映射容器一秒钟。以下是解决此问题的方法:

<!DOCTYPE html>
<html>
<head>
    <title>Simple Leaflet Map</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
</head>
<body>
    <a href="#" onclick="showMap('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png')">OpenStreetMap</a><br>
    <a href="#" onclick="showMap('http://{s}.tile.thunderforest.com/landscape/{z}/{x}/{y}.png')">Thunderforest</a><hr>
    <div id="map" style="width: 600px; height: 400px"></div>
    <script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"> </script>
    <script>
       var map;
        function showMap(url){
            if(!map)
            {  
               map = L.map('map').setView([-33.4387,-70.647], 14);
            }
            var mapLink = '<a href="http://openstreetmap.org">OpenStreetMap</a>';           
            L.tileLayer(url, {
            attribution: 'Map data &copy; ' + mapLink,
            maxZoom: 18,
            }).addTo(map);
        }
    </script>
</body>
</html>