【问题标题】:How to add images on map using leaflet and Javascript如何使用传单和 Javascript 在地图上添加图像
【发布时间】:2023-03-23 19:57:02
【问题描述】:
我正在寻找一种使用 Javascript 将图像添加到“传单地图”的方法。
我要做的是加载图像,调整其大小和位置,并将其附加到传单地图。
【问题讨论】:
标签:
javascript
leaflet
leaflet.draw
【解决方案1】:
这是一个基本演示,展示了如何使用 imageOverlay 添加图像。
您可以通过提供imageBounds来调整图片的位置和大小
// center of the map
var center = [-33.8650, 151.2094];
// Create the map
var map = L.map('map').setView(center, 5);
// Set up the OSM layer
L.tileLayer(
'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: 'Data © <a href="http://osm.org/copyright">OpenStreetMap</a>',
maxZoom: 18
}).addTo(map);
// add a marker in the given location
L.marker(center).addTo(map);
L.marker([-35.8650, 154.2094]).addTo(map);
var imageUrl = 'https://upload.wikimedia.org/wikipedia/commons/thumb/7/7c/Sydney_Opera_House_-_Dec_2008.jpg/1024px-Sydney_Opera_House_-_Dec_2008.jpg',
imageBounds = [center, [-35.8650, 154.2094]];
L.imageOverlay(imageUrl, imageBounds).addTo(map);
html,
body {
height: 100%;
}
#map {
height: 100%;
}
<script src="https://unpkg.com/leaflet@1.0.2/dist/leaflet.js"></script>
<link rel="stylesheet" type="text/css" href="https://unpkg.com/leaflet@1.0.2/dist/leaflet.css">
<div id="map"></div>