How to create polygon feature and add it to the map
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://app.vexcelgroup.com/map/v1/public/css/styles.css" type="text/css"/>
<style>
.map {
height: 800px;
overflow: hidden;
}
</style>
</head>
<body>
<div id="map" class="map"></div>
<script type="text/javascript" src="https://app.vexcelgroup.com/map/v1/public/Vexcel.js"></script>
<script type="text/javascript" src="main.js"></script>
</body>
</html>
main.js
const API_KEY = "YOUR_KEY";
const core = new Vexcel.Map({
target: "map",
token: API_KEY,
init: {
layers: false,
callback: () => {
const layerManager = core.getLayerManager();
const ring = [
new Vexcel.Geometry.Location(32.36140331527543, -84.44091796875),
new Vexcel.Geometry.Location(32.36140331527543, -82.529296875),
new Vexcel.Geometry.Location(33.87041555094183, -82.529296875),
new Vexcel.Geometry.Location(33.87041555094183, -84.44091796875),
new Vexcel.Geometry.Location(32.36140331527543, -84.44091796875),
];
const ring2 = [
new Vexcel.Geometry.Location(31.55981453201843, -87.0556640625),
new Vexcel.Geometry.Location(31.55981453201843, -85.166015625),
new Vexcel.Geometry.Location(32.861132322810946, -85.166015625),
new Vexcel.Geometry.Location(32.861132322810946, -87.0556640625),
new Vexcel.Geometry.Location(31.55981453201843, -87.0556640625),
];
const hole = [
new Vexcel.Geometry.Location(31.952162238024975, -86.41845703124999),
new Vexcel.Geometry.Location(31.952162238024975, -85.78125),
new Vexcel.Geometry.Location(32.47269502206151, -85.78125),
new Vexcel.Geometry.Location(32.47269502206151, -86.41845703124999),
new Vexcel.Geometry.Location(31.952162238024975, -86.41845703124999),
];
const polygonGeom = new Vexcel.Geometry.Polygon([ring]);
const polygonWithHoleGeom = new Vexcel.Geometry.Polygon([ring2, hole]);
const polygon = new Vexcel.Feature(polygonGeom);
const polygonWithHole = new Vexcel.Feature(polygonWithHoleGeom);
const vectorLayer = new Vexcel.Layers.VectorLayer({
visible: true,
features: [polygon, polygonWithHole],
});
layerManager.addLayer(vectorLayer);
},
},
});