updated myslice
[myslice.git] / plugins / googlemap / __init__.py
index a769f7f..08f2a7b 100644 (file)
@@ -8,12 +8,10 @@ class GoogleMap (Plugin):
     # googlemap_key :   mandatory googlemap API v3 key
     # latitude,longitude, zoom : the starting point
     # apparently at some point there has been support for a boolean 'checkboxes' input arg but seems dropped
-    def __init__ (self, query, query_all, googlemap_api_key=None, latitude=43., longitude=7., zoom=4, **settings):
+    def __init__ (self, query, googlemap_api_key=None, latitude=43., longitude=7., zoom=4, **settings):
         Plugin.__init__ (self, **settings)
         self.query=query
-        self.query_all = query_all
         self.googlemap_api_key=googlemap_api_key
-        self.query_all_uuid = query_all.query_uuid if query_all else None
         self.latitude=latitude
         self.longitude=longitude
         self.zoom=zoom
@@ -45,7 +43,7 @@ class GoogleMap (Plugin):
 
     # the list of things passed to the js plugin
     def json_settings_list (self): 
-        return [ 'plugin_uuid', 'query_uuid', 'query_all_uuid',
+        return [ 'plugin_uuid', 'query_uuid',
                  'init_key',
                  'latitude', 'longitude', 'zoom', 
                  ]