X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Fgooglemap%2F__init__.py;h=8005de291663850235cd965482044c1102b971ca;hb=754158ae8e3a6b8e1d5cfeed23de32e4ad941a29;hp=8ceaec63701e6b135d9addf8c41504fffa1326bc;hpb=b45df9e952ec69d293fe0e4963e040d2a21c07b3;p=unfold.git diff --git a/plugins/googlemap/__init__.py b/plugins/googlemap/__init__.py index 8ceaec63..8005de29 100644 --- a/plugins/googlemap/__init__.py +++ b/plugins/googlemap/__init__.py @@ -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=50., longitude=50, zoom=3, **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 @@ -35,7 +33,7 @@ class GoogleMap (Plugin): "/js/googlemap.js", "/js/markerclusterer.js", "js/manifold.js", "js/manifold-query.js", - "js/spin.presets.js", "js/spin.min.js", "js/jquery.spin.js", + "js/spin-presets.js", "js/spin.min.js", "js/jquery.spin.js", "js/unfold-helper.js", ], 'css_files' : [ "css/googlemap.css", @@ -44,4 +42,8 @@ class GoogleMap (Plugin): return reqs # the list of things passed to the js plugin - def json_settings_list (self): return ['plugin_uuid','query_uuid', 'query_all_uuid', 'latitude', 'longitude', 'zoom', ] + def json_settings_list (self): + return [ 'plugin_uuid', 'query_uuid', + 'init_key', + 'latitude', 'longitude', 'zoom', + ]