def __init__(self, name, html, gdalTMS=None):
     WebLayer3857.__init__(self,
                           groupName="MapQuest",
                           groupIcon="map_quest_icon.png",
                           name=name,
                           html=html,
                           gdalTMS=gdalTMS)
Example #2
0
 def __init__(self, name, html, gdalTMS=None):
     WebLayer3857.__init__(self,
                           groupName="OpenStreetMap",
                           groupIcon="osm_icon.png",
                           name=name,
                           html=html,
                           gdalTMS=gdalTMS)
Example #3
0
 def __init__(self, name, html, gdalTMS=None):
     WebLayer3857.__init__(self,
                           groupName="OSM/Stamen",
                           groupIcon="stamen_icon.png",
                           name=name,
                           html=html,
                           gdalTMS=gdalTMS)
 def __init__(self, name, html, gdalTMS=None):
     WebLayer3857.__init__(self,
                           groupName="Wikimedia Maps",
                           groupIcon="wikimedia_icon.png",
                           name=name,
                           html=html,
                           gdalTMS=gdalTMS)
Example #5
0
 def __init__(self, name, html):
     WebLayer3857.__init__(self, groupName="OpenStreetMap", groupIcon="osm_icon.png",
                           name=name, html=html)
 def __init__(self, name, html, gdalTMS=None):
     WebLayer3857.__init__(self, groupName="MapQuest", groupIcon="map_quest_icon.png",
                           name=name, html=html, gdalTMS=gdalTMS)
Example #7
0
 def html_url(self):
     url = WebLayer3857.html_url(self)
     url += "?layer=%s" % self._layer
     if self.apiKey():
         url += "&key=%s" % self.apiKey().strip()
     return url
Example #8
0
 def __init__(self, name, layer):
     WebLayer3857.__init__(self, groupName="OSM/Thunderforest", groupIcon="osm_icon.png",
                           name=name, html='osm_thunderforest.html', gdalTMS='inline')
     self._layer = layer
 def __init__(self, name, html):
     WebLayer3857.__init__(self, groupName="Bing Maps", groupIcon="bing_icon.png",
                           name=name, html=html)
Example #10
0
 def __init__(self, name, html):
     WebLayer3857.__init__(self, groupName="VWorld Maps", groupIcon="vworld_icon.png",
                           name=name, html=html)
 def __init__(self, name, html):
     WebLayer3857.__init__(self, groupName="Yahoo Maps", groupIcon="yahoo_icon.png",
                           name=name, html=html)
 def __init__(self, name, html):
     WebLayer3857.__init__(self,
                           groupName="Yahoo Maps",
                           groupIcon="yahoo_icon.png",
                           name=name,
                           html=html)
Example #13
0
 def __init__(self, name, html):
     WebLayer3857.__init__(self,
                           groupName="Google Maps",
                           groupIcon="google_icon.png",
                           name=name,
                           html=html)
 def __init__(self, name, html):
     WebLayer3857.__init__(self, groupName="Google Maps", groupIcon="google_icon.png",
                           name=name, html=html)
Example #15
0
 def html_url(self):
     url = WebLayer3857.html_url(self)
     apiKey = QSettings().value("Plugin-OpenLayers/googleMapsApiKey")
     if apiKey != None and bool(apiKey.strip()):
         url += "?key=%s" % apiKey
     return url
Example #16
0
 def html_url(self):
     url = WebLayer3857.html_url(self)
     apiKey = QSettings().value("Plugin-OpenLayers/googleMapsApiKey")
     if apiKey != None and bool(apiKey.strip()):
         url += "?key=%s" % apiKey
     return url
 def __init__(self, name, html):
     WebLayer3857.__init__(self,
                           groupName="Bing Maps",
                           groupIcon="bing_icon.png",
                           name=name,
                           html=html)
 def __init__(self):
     WebLayer3857.__init__(self,
                           groupName="Apple Maps",
                           groupIcon="apple_icon.png",
                           name='Apple iPhoto map',
                           html='apple.html')
Example #19
0
 def __init__(self, html, name):
     WebLayer3857.__init__(self, groupName="Buenos Aires", groupIcon="./bsas_icon.png", name=name, html=html)
 def __init__(self, name, html, gdalTMS=None):
     WebLayer3857.__init__(self, groupName="Wikimedia Maps",
                           groupIcon="wikimedia_icon.png",
                           name=name, html=html, gdalTMS=gdalTMS)
 def __init__(self, name, html, gdalTMS=None):
     WebLayer3857.__init__(self, groupName="OSM/Stamen", groupIcon="stamen_icon.png",
                           name=name, html=html, gdalTMS=gdalTMS)
 def __init__(self):
     WebLayer3857.__init__(self, groupName="Apple Maps", groupIcon="apple_icon.png",
                           name='Apple iPhoto map', html='apple.html')