0d1eae32be
Fix #5373. - Remove references to removed file "../../build/deps.js" - Update leaflet-include.js to point to "../dist/leaflet-src.js" - Update watch to use the same destination file as rollup (dist/leaflet-src.js) - Define getRandomLatLng where used
26 lines
646 B
HTML
26 lines
646 B
HTML
<html dir="rtl">
|
|
<head>
|
|
|
|
<link rel="stylesheet" href="../../dist/leaflet.css" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link rel="stylesheet" href="../css/mobile.css" />
|
|
|
|
<script src="../leaflet-include.js"></script>
|
|
<style>
|
|
#map { height: 100%; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="map"></div>
|
|
<script>
|
|
var map = L.map('map').setView([51.505, -0.09], 13);
|
|
L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map);
|
|
map.on('click', function(e) {
|
|
L.popup().setLatLng(e.latlng).setContent('Hello').openOn(map);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|