Skip to content

Commit

Permalink
Minor updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rbrundritt committed Dec 16, 2020
1 parent 310c72b commit bf5e3ed
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Azure Maps Gridded Data Source Documentation

* [API Interface](api-interface.md)
* [API Reference](api-reference.md)
* [Supported Expressions](supported-expressions.md)
3 changes: 2 additions & 1 deletion examples/Extruded gridded data source.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>

<!-- Add reference to the gridded data source module. -->
<script src="../dist/azure-maps-gridded-data-source.js"></script>
<script src="../dist/azure-maps-gridded-data-source.min.js"></script>

<script type='text/javascript'>
var map, datasource, popup;
Expand Down Expand Up @@ -197,6 +197,7 @@
The data in this sample consists of 86,576 data points that represent each address in Fort Collins, Colorado.
Once downloaded, the data points are aggregated into cells of a grid very quickly.
Each cell is a hexgaon that is 0.25 miles wide.
This samples uses the open source <a href="https://github.com/Azure-Samples/azure-maps-gridded-data-source" target="_blank">Azure Maps Gridded Data Source module</a>.
</fieldset>
</body>
</html>
5 changes: 3 additions & 2 deletions examples/Gridded data source options.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>

<!-- Add reference to the gridded data source module. -->
<script src="../dist/azure-maps-gridded-data-source.js"></script>
<script src="../dist/azure-maps-gridded-data-source.min.js"></script>

<script type='text/javascript'>
var map, datasource, layer, outlineLayer, popup;
Expand Down Expand Up @@ -207,7 +207,8 @@
<fieldset class="sidePanel">
<legend><h1 style="font-size:16px">Gridded data source options</h1></legend>
This sample shows all the different options available for the gridded data source module.
This module performs an operation that is also known by many names such as tessellations, data binning, or hex bins.
This module performs an operation that is also known by many names such as tessellations, data binning, or hex bins.
This samples uses the open source <a href="https://github.com/Azure-Samples/azure-maps-gridded-data-source" target="_blank">Azure Maps Gridded Data Source module</a>.
<br /><br />

<b>Setup</b><br/><br/>
Expand Down
3 changes: 2 additions & 1 deletion examples/Show points of gridded data source.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>

<!-- Add reference to the gridded data source module. -->
<script src="../dist/azure-maps-gridded-data-source.js"></script>
<script src="../dist/azure-maps-gridded-data-source.min.js"></script>

<script type='text/javascript'>
var map, datasource;
Expand Down Expand Up @@ -157,6 +157,7 @@
<legend><h1 style="font-size:16px">Show points of gridded data source</h1></legend>
This sample shows how to overlay a gridded data source on the map and the data points that are aggregated inside.
The data in this sample is all earthquakes that have occured in the past month.
This samples uses the open source <a href="https://github.com/Azure-Samples/azure-maps-gridded-data-source" target="_blank">Azure Maps Gridded Data Source module</a>.
</fieldset>
</body>
</html>
2 changes: 1 addition & 1 deletion src/source/GriddedDataSource.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import atlas, * as azmaps from 'azure-maps-control';
import * as azmaps from 'azure-maps-control';
import { GridType } from '../Enums/GridType';
import { GridMath, GridInfo } from '../helpers/GridMath';

Expand Down

0 comments on commit bf5e3ed

Please sign in to comment.