Unverified Commit ddf68339 authored by Kaitlyn Lee's avatar Kaitlyn Lee Committed by GitHub
Browse files

Merge pull request #113 from swalterfub/master

Update planetary_maps.py
parents 37acbd66 4146fa98
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -94,7 +94,7 @@ class planetary_maps:
                    url=layer["url"] + "?map=" + layer["map"],
                    layers=layer['layer'],
                    name=layer['displayname'],
                    crs='EPSG4326',
                    crs=projections.EPSG4326,
                    base=True,
                    show_loading=False,
                )
@@ -107,7 +107,7 @@ class planetary_maps:
                    url=layer["url"] + "?map=" + layer["map"],
                    layers=layer['layer'],
                    name=layer['displayname'],
                    crs='EPSG4326',
                    crs=projections.EPSG4326,
                    base=False,
                    transparent=True,
                    format="image/png",
@@ -167,7 +167,7 @@ class planetary_maps:
        """ Creates the map instance of the specific target. 
        Also adds all the controls to the map."""
        self.planet_map = Map(layers=tuple(self.layers),
                              center=(0, 0), zoom=1, crs='EPSG4326')
                              center=(0, 0), zoom=1, crs=projections.EPSG4326)

        draw_control = DrawControl()
        draw_control.polyline = {