This repository has been archived by the owner on May 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 127
/
Restrict drawing to Polygon area.html
82 lines (70 loc) · 3.76 KB
/
Restrict drawing to Polygon area.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<title>Restrict drawing to Polygon area - Bing Maps Samples</title>
<meta charset="utf-8" />
<link rel="shortcut icon" href="/favicon.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="This sample shows how to restirct the drawing of shapes to such that they must fit inside a specified polygon area." />
<meta name="keywords" content="Microsoft maps, map, gis, API, SDK, Bing, Bing Maps" />
<meta name="author" content="Microsoft Bing Maps" />
<meta name="screenshot" content="screenshot.jpg" />
<script type='text/javascript'>
var map, drawingManager, drawingArea;
function GetMap() {
map = new Microsoft.Maps.Map('#myMap', {});
//Create a random polygon in which to limit the drawing to.
drawingArea = Microsoft.Maps.TestDataGenerator.getPolygons(1, map.getBounds(), 5, 0.5);
map.entities.push(drawingArea);
//Load the Drawing Tools and Spatial Math modules.
Microsoft.Maps.loadModule(['Microsoft.Maps.DrawingTools', 'Microsoft.Maps.SpatialMath'], function () {
var tools = new Microsoft.Maps.DrawingTools(map);
tools.showDrawingManager(function (manager) {
//Store a reference to the drawing manager.
drawingManager = manager;
//Add drawingChanged and drawingEnded events to the drawing manager and use these to limit the shape to the drawing area.
Microsoft.Maps.Events.addHandler(manager, 'drawingChanged', limitShapeToDrawingArea);
Microsoft.Maps.Events.addHandler(manager, 'drawingEnded', limitShapeToDrawingArea);
})
});
}
function limitShapeToDrawingArea(shape) {
if (shape instanceof Microsoft.Maps.Pushpin) {
//Check to see if the pushpin intersects the drawing area.
if (!Microsoft.Maps.SpatialMath.Geometry.intersects(drawingArea, shape)) {
//If it doesn't, remove it from the map.
drawingManager.remove(shape);
}
} else {
//Get the locations of the polyline/polygon.
var locs = shape.getLocations();
//Loop through and remove any coordinates in it which may not be in the drawing area.
for (i = locs.length - 1; i >= 0; i--) {
if (!Microsoft.Maps.SpatialMath.Geometry.intersects(drawingArea, locs[i])) {
locs.splice(i + 1, 1);
}
}
//Update the coordinates of the shape.
shape.setLocations(locs);
}
}
</script>
</head>
<body>
<div id="myMap" style="position:relative;width:100%;min-width:290px;height:600px;background-color:gray"></div>
<fieldset style="width:800px;margin-top:10px;">
<legend>Restrict drawing to Polygon area Sample</legend>
This sample shows how to restirct the drawing of shapes to such that they must fit inside a specified polygon area. While drawing poly shapes, a preview line will still appear when the mouse is outside of the polygon area, however these will be removed as you draw and complete the shape.
</fieldset>
<script>
// Dynamic load the Bing Maps Key and Script
// Get your own Bing Maps key at https://www.microsoft.com/maps
(async () => {
let script = document.createElement("script");
let bingKey = await fetch("https://samples.azuremaps.com/api/GetBingMapsKey").then(r => r.text()).then(key => { return key });
script.setAttribute("src", `https://www.bing.com/api/maps/mapcontrol?callback=GetMap&key=${bingKey}`);
document.body.appendChild(script);
})();
</script>
</body>
</html>