Draw tool plugin for Origo.
Requires a version of Origo master not older than 2020-02-13.
index.html:
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=Edge;chrome=1">
<title>Origo exempel</title>
<link href="https://github.com/origo-map/draw-plugin/blob/master/css/style.css" rel="stylesheet">
<link href="https://github.com/origo-map/draw-plugin/blob/master/plugins/draw.css" rel="stylesheet">
</head>
<body>
<div id="app-wrapper">
</div>
<script src="https://github.com/origo-map/draw-plugin/raw/master/js/origo.js"></script>
<script src="https://github.com/origo-map/draw-plugin/raw/master/plugins/draw.min.js"></script>
<script type="text/javascript">
//Init origo
var origo = Origo('index.json');
origo.on('load', function (viewer) {
var draw = Draw({
buttonText: 'Rita',
drawTools: {
"Polygon": ["freehand", "box"],
"LineString": ["freehand"]
}
});
viewer.addComponent(draw);
});
</script>