You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
887 B
HTML
28 lines
887 B
HTML
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>OpenStreetMap 示例</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet/dist/leaflet.css" />
|
|
<script src="https://cdn.jsdelivr.net/npm/leaflet/dist/leaflet.js"></script>
|
|
<style>
|
|
#mapid { height: 580px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="mapid"></div>
|
|
<script>
|
|
var map = L.map('mapid').setView([116.46, 39.92], 13); // 设置中心点坐标和缩放级别
|
|
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
|
|
maxZoom: 19,
|
|
attribution: '© OpenStreetMap contributors'
|
|
}).addTo(map);
|
|
|
|
L.marker([116.46,39.92]).addTo(map)
|
|
.bindPopup('Hello World!')
|
|
.openPopup();
|
|
</script>
|
|
</body>
|
|
</html> |