Skip to content

Commit d9b3a92

Browse files
committed
add example
1 parent 61759f9 commit d9b3a92

6 files changed

+87
-6
lines changed

demo-snippets/ng/basic-map/basic-map.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<StackLayout>
77
<ContentView height="100%" width="100%">
88
<Mapbox
9-
accessToken="YOUR_ACCESS_TOKEN"
9+
[accessToken]="accessToken"
1010
mapStyle="traffic_day"
1111
latitude="50.467735"
1212
longitude="13.427718"

demo-snippets/ng/basic-map/basic-map.component.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
import { Component, OnInit } from '@angular/core';
1+
import { Component, OnInit, Inject } from '@angular/core';
22
import { RouterExtensions } from '@nativescript/angular';
3+
import { MAPBOX_API_KEY } from '../common';
34

45
@Component({
56
selector: 'ns-basic-map',
67
templateUrl: './basic-map.component.html'
78
})
89
export class BasicMapComponent implements OnInit {
9-
constructor(private router: RouterExtensions) {}
10+
constructor(@Inject(MAPBOX_API_KEY) public accessToken: string, private router: RouterExtensions) {}
1011

1112
ngOnInit(): void {}
1213

demo-snippets/ng/common.ts

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import { InjectionToken } from '@angular/core'
2+
3+
export const MAPBOX_API_KEY = new InjectionToken('MapboxApiKey');
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<ActionBar>
2+
<NavigationButton android.systemIcon="ic_menu_back" (tap)="goBack()"></NavigationButton>
3+
<Label text="Source with URL"></Label>
4+
</ActionBar>
5+
6+
<StackLayout>
7+
<ContentView height="100%" width="100%">
8+
<Mapbox
9+
[accessToken]="accessToken"
10+
mapStyle="mapbox://styles/mapbox/satellite-v9"
11+
latitude="138.043"
12+
longitude="35.201]"
13+
hideCompass="true"
14+
zoomLevel="7"
15+
showUserLocation="false"
16+
disableZoom="false"
17+
disableRotation="false"
18+
disableScroll="false"
19+
disableTilt="false"
20+
(mapReady)="onMapReady($event)">
21+
</Mapbox>
22+
</ContentView>
23+
</StackLayout>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import { Component, OnInit ,Inject } from '@angular/core';
2+
import { RouterExtensions } from '@nativescript/angular';
3+
import { MAPBOX_API_KEY } from '../common';
4+
5+
@Component({
6+
selector: 'ns-geojson-url',
7+
templateUrl: './geojson-url.component.html'
8+
})
9+
export class GeoJSONURLComponent implements OnInit {
10+
constructor(@Inject(MAPBOX_API_KEY) public accessToken: string, private router: RouterExtensions) {}
11+
12+
ngOnInit(): void {}
13+
14+
goBack(): void {
15+
this.router.back();
16+
}
17+
18+
onMapReady(args): void {
19+
console.log('map is ready');
20+
21+
const map = args.map;
22+
23+
map.addSource('earthquakes', {
24+
type: 'geojson',
25+
// Use a URL for the value for the `data` property.
26+
data: 'https://docs.mapbox.com/mapbox-gl-js/assets/earthquakes.geojson'
27+
});
28+
29+
map.addLayer({
30+
'id': 'earthquakes-layer',
31+
'type': 'circle',
32+
'source': 'earthquakes',
33+
'paint': {
34+
'circle-radius': 8,
35+
'circle-stroke-width': 2,
36+
'circle-color': 'red',
37+
'circle-stroke-color': 'white'
38+
}
39+
});
40+
41+
}
42+
}

demo-snippets/ng/install.module.ts

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,30 @@
11
import { NO_ERRORS_SCHEMA, NgModule } from '@angular/core';
22

33
import { registerElement } from '@nativescript/angular';
4+
import { MAPBOX_API_KEY } from './common';
45
registerElement('Mapbox', () => require('@nativescript-community/ui-mapbox').MapboxView);
56

67
import { BasicMapComponent } from './basic-map/basic-map.component';
8+
import { GeoJSONURLComponent } from './geojson-url/geojson-url.component';
79

8-
export const COMPONENTS = [BasicMapComponent];
10+
export const COMPONENTS = [BasicMapComponent, GeoJSONURLComponent];
911
@NgModule({
1012
imports: [],
1113
exports: [],
12-
schemas: [NO_ERRORS_SCHEMA]
14+
schemas: [NO_ERRORS_SCHEMA],
15+
providers: [
16+
{
17+
provide: MAPBOX_API_KEY,
18+
useValue: "YOUR_ACCESS_TOKEN",
19+
},
20+
]
1321
})
22+
1423
export class InstallModule {}
1524

1625
export function installPlugin() {}
1726

18-
export const demos = [{ name: 'Basic Map', path: 'basic-map', component: BasicMapComponent }];
27+
export const demos = [
28+
{ name: 'Basic Map', path: 'basic-map', component: BasicMapComponent },
29+
{ name: 'GeoJSON URL', path: 'geojson-url', component: GeoJSONURLComponent }
30+
];

0 commit comments

Comments
 (0)