In [1]:
import os
import folium

print(folium.__version__)


0.5.0+27.g2d457b0.dirty

How to use ImageOverlay

It may happen that you want to draw an image on you map. Here are example on how to do that.

Using an image from disk

If you have a static image file on your disk, you can simply draw it on the map.


In [2]:
merc = os.path.join('data', 'Mercator_projection_SW.png')

m = folium.Map([37, 0], zoom_start=1, tiles='stamentoner')

img = folium.raster_layers.ImageOverlay(
    name='Mercator projection SW',
    image=merc,
    bounds=[[-82, -180], [82, 180]],
    opacity=0.6,
    interactive=True,
    cross_origin=False,
    zindex=1,
)

folium.Popup('I am an image').add_to(img)

img.add_to(m)

folium.LayerControl().add_to(m)

m.save(os.path.join('results', 'ImageOverlay_0.html'))

m


Out[2]:

A few remarks:

You can also provide simply URL. In this case, the image will not be embedded in folium's output.


In [3]:
m = folium.Map([37, 0], zoom_start=1, tiles='stamentoner')

folium.raster_layers.ImageOverlay(
    image='https://upload.wikimedia.org/wikipedia/commons/f/f4/Mercator_projection_SW.jpg',
    name='Mercator projection SW',
    bounds=[[-82, -180], [82, 180]],
    opacity=1,
    interactive=False,
    cross_origin=False,
    zindex=1,
    alt='Wikipedia File:Mercator projection SW.jpg'
).add_to(m)

folium.LayerControl().add_to(m)


m.save(os.path.join('results', 'ImageOverlay_1.html'))

m


Out[3]:

This works exactly the same way if you want to put a JPG intead of a PNG.


In [4]:
merc = os.path.join('data', 'Mercator_projection_SW.jpg')

m = folium.Map([37, 0], zoom_start=1, tiles='stamentoner')

folium.raster_layers.ImageOverlay(
    name='I am a jpeg',
    image=merc,
    bounds=[[-82, -180], [82, 180]],
    opacity=0.6,
).add_to(m)

folium.LayerControl().add_to(m)

m.save(os.path.join('results', 'ImageOverlay_2.html'))

m


Out[4]:

In creating an image with numpy

Now you may wish to create your own image, based on another python computation. For this, you'll need to have numpy installed on your machine.

Let's creater an image to draw a rectangle in the bounds [[0, -60], [60, 60]].


In [5]:
import numpy as np

image = np.zeros((61, 61))
image[0, :] = 1.0
image[60, :] = 1.0
image[:, 0] = 1.0
image[:, 60] = 1.0

We can draw it on the map in using:


In [6]:
m = folium.Map([37, 0], zoom_start=2)

folium.raster_layers.ImageOverlay(
    image=image,
    bounds=[[0, -60], [60, 60]],
    colormap=lambda x: (1, 0, 0, x),
).add_to(m)

m


Out[6]:

Note that you need to provide a colormap of the form lambda x: (R,G,B,A) where R,G,B,A are floats between 0 and 1.

Now, let's try to add a line at latitude 45°, and add a polyline to verify it's well rendered. We'll need to specify origin='lower to inform folium that the first lines of the array are to be plotted at the bottom of the image (see numpy.imshow, it's the same principle).


In [7]:
import numpy as np

image = np.zeros((61, 1))

image[45, :] = 1.0


m = folium.Map([37, 0], zoom_start=3)

folium.raster_layers.ImageOverlay(
    image=image,
    bounds=[[0, -60], [60, 60]],
    colormap=lambda x: (1, 0, 0, x),
    origin='lower',
).add_to(m)

folium.PolyLine([[45, -60], [45, 60]]).add_to(m)

m.save(os.path.join('results', 'ImageOverlay_3.html'))

m


Out[7]:

But even with origin='lower', the red line is not at the good latitude. This is due to Mercator projection used in Leaflet (and most other map systems).

You can read wikipedia's article on Mercator Projection (https://en.wikipedia.org/wiki/Mercator_projection), or simply let folium do the job, in precising that you want the mercator stuff to be handled.


In [8]:
m = folium.Map([37, 0], zoom_start=3)

folium.PolyLine([[45, -60], [45, 60]]).add_to(m)

folium.raster_layers.ImageOverlay(
    image=image,
    bounds=[[0, -60], [60, 60]],
    origin='lower',
    colormap=lambda x: (1, 0, 0, x),
    mercator_project=True,
).add_to(m)

m.save(os.path.join('results', 'ImageOverlay_4.html'))

m


Out[8]:

This time, the lines are properly positionned (at the precision of the array).