我有点困惑。我需要获取当前位置(经度和纬度)并相应显示HERE MAP。如何显示我需要使用的东西?
我需要根据当前位置动态设置纬度和经度。将显示在地图中。所以下面是我的代码。
// Initialize the platform object:
var platform = new H.service.Platform({
useCIT: true,
app_id: '--------------',
app_code: '--------------',
useHTTPS: true
});
// Obtain the default map types from the platform object
var maptypes = platform.createDefaultLayers();
// Instantiate (and display) a map object:
var map = new H.Map(
document.getElementById('mapContainer'),
maptypes.normal.map,
{
zoom: 10,
center: {lng: 78.448, lat: 17.437}
});