杭州景区地图全图 (杭州景区地图分布)

杭州耍耍 05-14 阅读:40 评论:0
景点
公园
杭州景区地图全图 (杭州景区地图分布)
博物馆
寺庙
其他
javascript // Map data var data = [{"id": "1","name": "西湖","type": "景点","location": [120.123, 30.274]},{"id": "2","name": "灵隐寺","type": "寺庙","location": [120.213, 30.253]},{"id": "3","name": "岳王庙","type": "景点","location": [120.155, 30.251]},{"id": "4","name": "雷峰塔","type": "景点","location": [120.115, 30.236]},{"id": "5","name": "六和塔","type": "景点","location": [120.151, 30.201]},{"id": "6","name": "杭州动物园","type": "公园","location": [120.111, 30.283]},{"id": "7","name": "杭州植物园","type": "公园","location": [120.217, 30.315]},{"id": "8","name": "浙江省博物馆","type": "博物馆","location": [120.167, 30.245]},{"id": "9","name": "西泠印社","type": "博物馆","location": [120.137, 30.236]},{"id": "10","name": "龙井村","type": "其他","location": [120.145, 30.115]} ];// Create the map var map = L.map('map').setView([30.264, 120.154], 12);// Add the base layer L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {attribution: '© OpenStreetMap contributors' }).addTo(map);// Add the markers for (var i = 0; i < data.length; i++) {var marker = L.marker(data[i].location);// Add the tooltipmarker.bindTooltip(data[i].name);// Add the marker to the mapmarker.addTo(map); }
版权声明

本文仅代表作者观点,不代表杭州桑拿立场。
本文系作者授权发表,未经许可,不得转载。