terriajs
Version:
Geospatial data visualization platform.
20 lines (16 loc) • 677 B
JavaScript
import Rectangle from "terriajs-cesium/Source/Core/Rectangle";
// Server does not return information of a bounding box, just a location.
// BOUNDING_BOX_SIZE is used to expand a point
const DEFAULT_BOUNDING_BOX_SIZE = 0.2;
export default function createZoomToFunction(
latitude,
longitude,
boundingBoxSize
) {
boundingBoxSize = boundingBoxSize ?? DEFAULT_BOUNDING_BOX_SIZE;
var south = parseFloat(latitude) - boundingBoxSize / 2;
var west = parseFloat(longitude) - boundingBoxSize / 2;
var north = parseFloat(latitude) + boundingBoxSize / 2;
var east = parseFloat(longitude) + boundingBoxSize / 2;
return Rectangle.fromDegrees(west, south, east, north);
}