DEV Community

Cendekia
Cendekia

Posted on • Originally published at Medium on

Develop a Map Application using NativeScript and MapBox

Develop a Map Application using NativeScript and MapBox

Prerequisites:

  1. Install NativeScript on your computer
  2. Create a MapBox account to get the access token
  3. Little knowledge about JavaScript, either JS core, Angular or Vue JS

Intro:

As you might know that MapBox is a map service provider that similar to a Google map. In this blog, I’m trying to show how easy to build a Map Application for both Android and IOS with {N}ativeScript and MapBox.

The steps:

After you have successfully installed the {N}ativeScript on your machine, then you need to run:

tns create mapApp --ng

that command will create a {N} project for you, as you might wondering there is a .. --ng, that the option command for using Angular template.

Next step, test you scaffolding app, make sure connecting your android phone to your laptop/pc:

\> cd mapApp
\> tns run android
Enter fullscreen mode Exit fullscreen mode

This command will take a while for building your app to your Android phone. Once it finishes, it will look like this:

Back to your root app, then add plugins:

  1. First, add {N} plugin for detecting our device current location: tns plugin add nativescript-geolocation
  2. Then, add mapbox plugin: tns plugin add nativescript-mapbox

That’s all, now we can start coding.

Add the following code to your app at src/app/app.module.ts for registering Mapbox view:

Then move to src/app/item/items.component.ts and add the following codes:

Run the geolocation testing by using commandtns run android and you should saw printed logs, like so:

JS: Angular is running in the development mode. Call enableProdMode() to enable the production mode.

JS: checking if geolocation is enabled

JS: isEnabled = false

JS: enableLocationRequest()
Enter fullscreen mode Exit fullscreen mode

Your android phone will be showing a popup of location permission access, and when you allow it, then it will show something like this:

JS: location enabled!

JS: watchLocation()
Enter fullscreen mode Exit fullscreen mode

At this point your MapApp are successfully capturing location of your phone.

If you encounter these errors below while running/testing the app, make sure you are deleting the android directory under platforms and then rebuild again by running the command tns run android again, somehow the android app by default searching for google API for detecting location.

JS: checking if geolocation is enabled

JS: isEnabled error TypeError: Cannot read property 'GoogleApiAvailability' of undefined

JS: enableLocationRequest()

JS: Failed to enable TypeError: Cannot read property 'GoogleApiAvailability' of undefined
Enter fullscreen mode Exit fullscreen mode

Now, we can put a Map to our screen App. Add the following codes:

And we are Done! You should see something like this on your phone screen:

Conclusion

Although, this post only cover the basic things, I hope it will help for those who wants to build a Map application with NativeScript and MapBox feature in it.

If you had trouble following the tutorial, here try the source code

Happy Coding…

Top comments (0)