Skip to content

Commit 8c5c0ce

Browse files
committed
rename
1 parent 5fbd2bd commit 8c5c0ce

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nativescript-google-maps-sdk-utils
1+
nativescript-google-maps-utils
22
==================================
33

44
NativeScript Google Maps SDK utility library to support features such as marker clustering, heatmap, ...
@@ -26,15 +26,15 @@ iOS not implemented.
2626
# Install
2727

2828
```
29-
tns plugin add nativescript-google-maps-sdk-utils
29+
tns plugin add nativescript-google-maps-utils
3030
```
3131

3232
# Usage
3333

3434

3535
```
3636
var GoogleMaps = require('nativescript-google-maps-sdk');
37-
var GoogleMapsUtils = require('nativescript-google-maps-sdk-utils');
37+
var GoogleMapsUtils = require('nativescript-google-maps-utils');
3838
3939
4040
function onMapReady(args) {
@@ -59,6 +59,6 @@ function onMapReady(args) {
5959

6060
import using either of
6161

62-
* `import GoogleMapsUtils = require("nativescript-google-maps-sdk-utils")`
63-
* `import * as GoogleMapsUtils from "nativescript-google-maps-sdk-utils"`
62+
* `import GoogleMapsUtils = require("nativescript-google-maps-utils")`
63+
* `import * as GoogleMapsUtils from "nativescript-google-maps-utils"`
6464

demo/app/main-page.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
var vmModule = require("./main-view-model");
22
var observableModule = require("data/observable");
33
var GoogleMaps = require("nativescript-google-maps-sdk");
4-
var GoogleMapsUtils = require("nativescript-google-maps-sdk-utils");
4+
var GoogleMapsUtils = require("nativescript-google-maps-utils");
55
var Image = require("ui/image").Image;
66
var imageSource = require("image-source");
77
var Color = require("color").Color;
@@ -129,7 +129,7 @@ function onMapReady(args) {
129129
return GoogleMaps.Position.positionFromLatLng(position[0], position[1]);
130130
});
131131

132-
GoogleMapsUtils.enableDebug(require('./debug')('nativescript-google-maps-sdk-utils'));
132+
GoogleMapsUtils.enableDebug(require('./debug')('nativescript-google-maps-utils'));
133133

134134
GoogleMapsUtils.setupHeatmap(mapView, positionSet);
135135

demo/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"version": "2.0.0"
66
},
77
"tns-android": {
8-
"version": "2.0.0"
8+
"version": "2.2.0"
99
}
1010
},
1111
"dependencies": {
1212
"nativescript-google-maps-sdk": "*",
13-
"nativescript-google-maps-sdk-utils": "file:..",
13+
"nativescript-google-maps-utils": "file:..",
1414
"tns-core-modules": "^2.0.0"
1515
},
1616
"devDependencies": {
@@ -20,4 +20,4 @@
2020
"filewalker": "0.1.2",
2121
"lazy": "1.0.11"
2222
}
23-
}
23+
}

index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
declare module "nativescript-google-maps-sdk-utils" {
2+
declare module "nativescript-google-maps-utils" {
33

44
import { MapView, Position, Marker } from "nativescript-google-maps-sdk";
55

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "nativescript-google-maps-sdk-utils",
3-
"version": "0.0.1",
2+
"name": "nativescript-google-maps-utils",
3+
"version": "0.1.0",
44
"description": "NativeScript Google Maps SDK utility library to support features such as marker clustering, heatmap, ...",
55
"main": "index.js",
66
"nativescript": {
@@ -14,7 +14,7 @@
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "git+https://github.com/naderio/nativescript-google-maps-sdk-utils.git"
17+
"url": "git+https://github.com/naderio/nativescript-google-maps-utils.git"
1818
},
1919
"keywords": [
2020
"nativescript",
@@ -25,9 +25,9 @@
2525
"author": "Nader Toukabri <contact@nader.tn>",
2626
"license": "Unlicense",
2727
"bugs": {
28-
"url": "https://github.com/naderio/nativescript-google-maps-sdk-utils/issues"
28+
"url": "https://github.com/naderio/nativescript-google-maps-utils/issues"
2929
},
30-
"homepage": "https://github.com/naderio/nativescript-google-maps-sdk-utils#readme",
30+
"homepage": "https://github.com/naderio/nativescript-google-maps-utils#readme",
3131
"devDependencies": {
3232
"tns-core-modules": "*",
3333
"typescript": "^1.8.10"

0 commit comments

Comments
 (0)