DEV Community

Cover image for Using Leaflet to add maps to your IONIC application
Vivek Singh Bisht
Vivek Singh Bisht

Posted on

Using Leaflet to add maps to your IONIC application

Originally posted at- http://mobiwebcoder.com/using-leaflet-with-ionic/

When it comes to the question “Which API to use to load Maps for your Ionic application?” The general answer is to use Google Maps API. But google maps API is not free, well it’s almost free but you still need to add your credit card credentials to increase the quota of map load requests. What if you don’t have a credit card? Which API would you use then, to load ? One of the easiest ways of adding Maps to your application is by using Leaflet.

Leaflet is a JavaScript library which is built for adding interactive maps to our application. It works smoothly and efficiently in desktop platforms as well as in mobile platforms. The added advantage of using leaflet in our application is that it’s open-source.

We’re going to create a basic mobile application consisting of a form which requires us to fill in pickup location and the pickup location is going to be located using Leaflet.

This is how the application is going to look in your mobile phone after completion :

Home page of the application

Pickup location page of the application

Requirements for our application :

  1. node.js (For using npm)
  2. Ionic (I’m using Ionic 4 for this application)
  3. Angular (I’m using Angular 8 for this application)

Setting up our application :
Run the below commands in your command prompt/terminal to set up our application:

ionic start myApp blank
ionic generate page pickup-location

Now your project directory should look something like this :

Project directory of our application

Go to home/homepage.html, clear out all the starter code provided by ionic and replace it with the code below:

All we have done by writing this code is to create our home page which consists of a header in the form of a toolbar we called it Access Location.

Along with this we created a item element in the form of an input element but in this case instead of using i have used .

We have added a click event handler to our which calls a function “onpickupClick()” which is present in our component(don’t worry I’m going to show the component code right after this para). Along with this I have used interpolation to bind our component property “pickupLocation” to our view.

Now go to home/home.page.ts, replace your code with the code below so that your home.page.ts should look something like this :

Here we have added our component property pickupLocation which will hold the value of our location. Function onpickupClick() will navigate our application to the pickup-location page. Make sure you have imported router from @angular/router.

If you run your code using “ionic serve” in your terminal right now, you are going to see the homepage appear with a Pickup Location text-label which is “clickable”. On clicking it, you will be navigated to Pickup-Location page.

Now, we come to the interesting part where we finally add Leaflet maps to our application but before that, the code inside of your pickup-location page needs to be changed so go to pickup-location/pickup-location.page.html and replace it with the code below :

Let’s quickly go through what we’ve added here. We’ve added a toolbar which reads Pickup Location and has a back button added which will help us go back to our homepage, this button has a “click” handler attached to it which executes goBack function.

Along with this I have added another text-area with the label address and this text-area will have our address value loaded when we locate our position in the map. I’ve added two-way binding for this textarea using
ngModel and its value equals address which will be a component property.

And finally a button which executes confirmPickupLocation function on being clicked.

Now go to pickup-location/pickup-location.page.ts and replace the code inside it so that it looks something like this:

Here as you can see I have added a property named address which will be bound to our view.

Now we need to add leaflet to our application, for adding leaflet in our application we need install leaflet using npm and also install @types/leaflet
So run the following commands in your command prompt/terminal:

npm install leaflet --save
npm install @types/leaflet

Alright we have installed Leaflet but how do we use it?
Here are the steps below to use leaflet :

  1. Add Leaflet CSS file in the head section of index.html
  2. Initialise a Leaflet Map using Leaflet objects in our component
  3. Add tiles to the Leaflet Map

Let’s follow these steps,

Add the below link in the head section of index.html (src/index.html) to add Leaflet CSS files :

After adding Leaflet CSS files, go to pickup-location/pickup-location.page.ts and add the following import statements at the top of the page :

Now we are ready to initialise our map, this is how leaflet maps are initialised :

Now let’s go through the above command,
new Map() is used to initialise a new Map and it takes in a parameter which will be id of the DOM element in which the Map will be displayed.

setView() is used to set the view of map and it takes in two parameters, first parameter is an array of latitude and longitude and the second is the zoom level of the map.

We can rewrite the initialisation like this for better understanding :

I have set the latitude and longitude of Hyderabad you can change it to whatever area you like. The zoom level used here is 13 but again you can use the zoom-level according to your needs.

Next step is to add tiles to our map and it’s completely your choice from where you want to add tile-layer to your map in this project I have added tiles from openstreetmap.

We create the tile-layer like this :

Now we need to add the tile layer to our map and also, add a div container with the id “mapId” inside pickup-location.page.html.

Add the following container inside of pickup-location/pickup-location.page.html :

Add the code inside pickup-location/pickup-location.page.ts so that it looks like this :

Here as you can see I’ve added some code, let’s break it down,

I’ve added new properties map and newMarker, map is to store the initialised Map and newMarker is to add a marker to our Map.

Next, I’ve added a function IonViewDidEnter() which loads the map after the view of our application is initialised.

And finally loadMap() function which initialises our map and adds tile-layer to our Map.

If you run the code using “ionic serve”, you will see a map being loaded in the pickup-location page. Now, we need to make the application locate us for that we need to add the following code inside the class PickupLocationPage in pickup-location/pickup-location.page.ts :

Let’s breakdown the code, if you look in the pickup-location.page.html, we have a which has a click event handler and is being handled by a function called locatePosition() and that is the function we’ve added above.

This function uses the locate method to locate you and on locating you, adds a marker to your map. To to this marker we’ve added a popup which says “You are located here”.

Next we have made our marker draggable which allows us to drag our marker and the latitudes and longitudes after the marker is dragged are stored in a constant.

If you run “ionic serve” now you’ll be able to see the complete working of our main functionality where we are able to locate our position in the map.

Next we’ll be converting the latitudes and longitudes that are available from the map and storing it into a component property and display it in the view.

For converting the latitudes and longitudes into a readable text we use nativegeocoder from ionic and the cordova plugin for it so run the code below to add geocoder in our application:

ionic cordova plugin add cordova-plugin-nativegeocoder
npm install @ionic-native/native-geocoder

Now add the code inside pickup-location.page.ts page so that it looks like this:

Let’s breakdown the code we added, we added a getAddress function which
uses the reversegeocode function and changes lat-long into readable text. To understand how the nativegeocoder works click here.

I’ve added the two lines of code inside the locateMap() function which invokes the getAddress function.

confirmPickupLocation() uses the navigationExtras in Angular to pass the property address to the other component. To understand how navigation extras work click here.

Finally in the home.page.ts add the code so that it looks like this :

I’ve added code inside the constructor so that it accesses the property we exported from pickup-location.page.ts (confirmPickupLocation()).

Now we are finally ready to run our application in mobile, for this you need to setup ionic for mobile platforms, here I have used android platform to run our application. For knowing how to set up your project for android platform click here.

After setting up android platform, run the below command to deploy it to your mobile which has been connected to your desktop/laptop through USB (Make sure you set the USB debugging to on in your mobile).

And there you go, we have created an IONIC 4 application and added Leaflet maps to it.

Oldest comments (0)