使用tomtom sdk添加地图标记时出错
Error on adding a map marker with tomtom sdk
传单库错误
每次尝试向我的地图添加地图标记时都会出现此错误
leaflet.js:5 未捕获类型错误: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
中声明
您将 map 分配给了从 setProductInfo 方法返回的内容。
它应该分配给 tomtom.L.map.
const map = tomtom.L.map("map", {
key: 'myapikey',
source: 'vector',
center: storeLocation,
basePath: '/sdk',
zoom: 15
});
您可以使用类似的东西:
const map = tomtom.L.map("map", {
key: 'YOUR API KEY',
center: [0.0000, 00.0000],
basePath: 'tomtom',
zoom: 16
});
var marker = tomtom.L.marker([0.0000, 00.0000]).addTo(map);
marker.bindPopup('Flyover International').openPopup();
传单库错误
每次尝试向我的地图添加地图标记时都会出现此错误
leaflet.js:5 未捕获类型错误: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
中声明您将 map 分配给了从 setProductInfo 方法返回的内容。 它应该分配给 tomtom.L.map.
const map = tomtom.L.map("map", {
key: 'myapikey',
source: 'vector',
center: storeLocation,
basePath: '/sdk',
zoom: 15
});
您可以使用类似的东西:
const map = tomtom.L.map("map", {
key: 'YOUR API KEY',
center: [0.0000, 00.0000],
basePath: 'tomtom',
zoom: 16
});
var marker = tomtom.L.marker([0.0000, 00.0000]).addTo(map);
marker.bindPopup('Flyover International').openPopup();