Skip to content

Commit dc0e19e

Browse files
committed
Rename package name to azure-maps-animation
1 parent 2d7520c commit dc0e19e

30 files changed

+36
-36
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## azure-maps-animations Changelog
1+
## azure-maps-animation Changelog
22

33
<a name="0.0.2"></a>
44
# 0.0.2 (Unreleased)

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to azure-maps-animations
1+
# Contributing to azure-maps-animation
22

33
This project welcomes contributions and suggestions. Most contributions require you to agree to a
44
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ A rich library of animations for use with the Azure Maps Web SDK.
3434

3535
## Getting started
3636

37-
Download the project and copy the `azure-maps-animations` JavaScript file from the `dist` folder into your project.
37+
Download the project and copy the `azure-maps-animation` JavaScript file from the `dist` folder into your project.
3838

3939
See the [documentation](https://github.com/Azure-Samples/azure-maps-animations/tree/main/docs) for more details on a specific feature or take a look at one of the samples below.
4040

build/build.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ let rollupError = false;
4949
//const [majorVersion, minorVersion] = pkg.version.split(".");
5050

5151
// File name and path for non-minified browser js
52-
const outFilePath = `${distDirPath}/azure-maps-animations.js`;
53-
const outMinFilePath = `${distDirPath}/azure-maps-animations.min.js`;
52+
const outFilePath = `${distDirPath}/azure-maps-animation.js`;
53+
const outMinFilePath = `${distDirPath}/azure-maps-animation.min.js`;
5454

5555
const inputPath = "./js/index.js";
5656

File renamed without changes.
File renamed without changes.

examples/Animate a GPS trace.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<script src="https://atlas.microsoft.com/sdk/javascript/spatial/0/atlas-spatial.min.js"></script>
1919

2020
<!-- Add reference to the animation module. -->
21-
<script src="../dist/azure-maps-animations.js"></script>
21+
<script src="../dist/azure-maps-animation.js"></script>
2222

2323
<script type='text/javascript'>
2424
var datasets = [

examples/Animate a choropleth map.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<script src="https://atlas.microsoft.com/sdk/javascript/spatial/0/atlas-spatial.min.js"></script>
1919

2020
<!-- Add reference to the animation module. -->
21-
<script src="../dist/azure-maps-animations.js"></script>
21+
<script src="../dist/azure-maps-animation.min.js"></script>
2222

2323
<script type='text/javascript'>
2424
var map, datasource, popup, maxScale = 30, colorExpressions = [], timer;

examples/Animate a snakeline.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, line, animation;

examples/Animate along a path.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, pin, lineSource, pinSource;

examples/Animate along a route path.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, pin, lineSource, pinSource;

examples/Animate marker along path.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, marker, animation;

examples/Animate multiple points.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, points = [], numPoints = 50, currentGroupAnimation = null;

examples/Animate point along path.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, point, animation;

examples/Animate to new position of marker.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, marker;

examples/Animate to new position of point.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, point;

examples/Animated tile layer.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, layer, timer;

examples/Animated traffic flow.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, layer, animation;

examples/Animation easings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.min.js"></script>
2020

2121
<!-- Add reference to the animation module. -->
22-
<script src="../dist/azure-maps-animations.js"></script>
22+
<script src="../dist/azure-maps-animation.js"></script>
2323

2424
<script type='text/javascript'>
2525
var map, point;

examples/Bouncing marker animation.html

+1-1
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 animation module. -->
19-
<script src="../dist/azure-maps-animations.js"></script>
19+
<script src="../dist/azure-maps-animation.js"></script>
2020

2121
<script type='text/javascript'>
2222
var map;

examples/Drop markers on interval.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, animation;

examples/Drop multiple markers animation.html

+1-1
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 animation module. -->
19-
<script src="../dist/azure-maps-animations.js"></script>
19+
<script src="../dist/azure-maps-animation.js"></script>
2020

2121
<script type='text/javascript'>
2222
var map, animation;

examples/Drop multiple symbols animation.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, animation;

examples/Drop symbol animation.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, animation;

examples/Drop symbols on interval.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, animation;

examples/Fade shapes in sequentially.html

+1-1
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 animation module. -->
19-
<script src="../dist/azure-maps-animations.js"></script>
19+
<script src="../dist/azure-maps-animation.js"></script>
2020

2121
<script type='text/javascript'>
2222
var map, animation, layer;

examples/Morph shape animation.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, polygon, animation;

examples/Moving dashed line.html

+1-1
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 animation module. -->
18-
<script src="../dist/azure-maps-animations.js"></script>
18+
<script src="../dist/azure-maps-animation.js"></script>
1919

2020
<script type='text/javascript'>
2121
var map, layer, animation;

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "azure-maps-animations",
2+
"name": "azure-maps-animation",
33
"version": "0.0.2",
44
"description": "A module for the Azure Maps Web SDK that provides tools for animating data on the map.",
55
"keywords": [
@@ -46,5 +46,5 @@
4646
"LICENSE.md"
4747
],
4848
"types": "typings/index.d.ts",
49-
"main": "dist/azure-maps-animations.min.js"
49+
"main": "dist/azure-maps-animation.min.js"
5050
}

0 commit comments

Comments
 (0)