gpt4 book ai didi

javascript - 如何使用传单和 Javascript 在 map 上添加图像

转载 作者:行者123 更新时间:2023-11-30 07:21:19 27 4
gpt4 key购买 nike

我正在寻找一种使用 Javascript 将图像添加到“传单 map ”的方法。

我想做的是加载图像,调整其大小和位置,并将其附加到传单 map 。

最佳答案

这是一个基本演示,展示了如何使用 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>

关于javascript - 如何使用传单和 Javascript 在 map 上添加图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41502713/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com