Skip to content

Commit bf5e3ed

Browse files
committed
Minor updates
1 parent 310c72b commit bf5e3ed

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Azure Maps Gridded Data Source Documentation
22

3-
* [API Interface](api-interface.md)
3+
* [API Reference](api-reference.md)
44
* [Supported Expressions](supported-expressions.md)

examples/Extruded gridded data source.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
1717

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

2121
<script type='text/javascript'>
2222
var map, datasource, popup;
@@ -197,6 +197,7 @@
197197
The data in this sample consists of 86,576 data points that represent each address in Fort Collins, Colorado.
198198
Once downloaded, the data points are aggregated into cells of a grid very quickly.
199199
Each cell is a hexgaon that is 0.25 miles wide.
200+
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>.
200201
</fieldset>
201202
</body>
202203
</html>

examples/Gridded data source options.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
1616

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

2020
<script type='text/javascript'>
2121
var map, datasource, layer, outlineLayer, popup;
@@ -207,7 +207,8 @@
207207
<fieldset class="sidePanel">
208208
<legend><h1 style="font-size:16px">Gridded data source options</h1></legend>
209209
This sample shows all the different options available for the gridded data source module.
210-
This module performs an operation that is also known by many names such as tessellations, data binning, or hex bins.
210+
This module performs an operation that is also known by many names such as tessellations, data binning, or hex bins.
211+
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>.
211212
<br /><br />
212213

213214
<b>Setup</b><br/><br/>

examples/Show points of gridded data source.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<script src="https://atlas.microsoft.com/sdk/javascript/mapcontrol/2/atlas.min.js"></script>
1717

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

2121
<script type='text/javascript'>
2222
var map, datasource;
@@ -157,6 +157,7 @@
157157
<legend><h1 style="font-size:16px">Show points of gridded data source</h1></legend>
158158
This sample shows how to overlay a gridded data source on the map and the data points that are aggregated inside.
159159
The data in this sample is all earthquakes that have occured in the past month.
160+
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>.
160161
</fieldset>
161162
</body>
162163
</html>

src/source/GriddedDataSource.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import atlas, * as azmaps from 'azure-maps-control';
1+
import * as azmaps from 'azure-maps-control';
22
import { GridType } from '../Enums/GridType';
33
import { GridMath, GridInfo } from '../helpers/GridMath';
44

0 commit comments

Comments
 (0)