传单库错误
每次尝试向地图添加地图标记时都会出现此错误
leaflet.js:5 Uncaught TypeError: t.addLayer 不是 i.addTo (leaflet.js:5) 的函数。这个函数是库的一部分,我不知道为什么它不起作用。我的代码来自 tomtom 的开发者门户。这是我的代码。
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel='stylesheet' type='text/css' href='sdk/map.css'/>
<link rel="stylesheet" href="style.css">
<script src='sdk/tomtom.min.js'></script>
<title>Document</title>
</head>
<body>
<header class="name-header">
<div class="name-wrapper">
<nav class="container">
</nav>
</div>
</header>
<div class="img-wrapper">
<div class="svgbox">
</div>
</div>
<div id="map"> </div>
<script>
var storeLocation = [35.677512,-81.99855]
const map = tomtom.setProductInfo('KG\'s', '<your-product-
version>');
tomtom.L.map("map", {
key: 'myapikey',
source: 'vector',
center: storeLocation,
basePath: '/sdk',
zoom: 15
});
var marker = tomtom.L.marker(storeLocation).addTo(map);
marker.bindPopup("my business").openPopup();
</script>
</div>
</body>
</html>
我的地图大小在我的 css 中声明