UNPKG

@goongmaps/goong-map-react

Version:

A fork of react-map-gl. React components for Goong JS

8 lines (7 loc) 221 B
// Place camera over terrain export function getTerrainElevation(map, {longitude, latitude}) { if (map && map.queryTerrainElevation) { return map.queryTerrainElevation([longitude, latitude]) || 0; } return 0; }