diff options
| author | lsces <lester@lsces.co.uk> | 2014-08-04 23:59:39 +0100 |
|---|---|---|
| committer | lsces <lester@lsces.co.uk> | 2014-08-04 23:59:39 +0100 |
| commit | 32096edf61bf07c257f750e0fddd3598fdd6789b (patch) | |
| tree | a330cdf0f6709ce2ef47578d5f586439a33a0874 | |
| parent | 6d36c311beeb94997bf401880cd82a0414170937 (diff) | |
| download | ckeditor-32096edf61bf07c257f750e0fddd3598fdd6789b.tar.gz ckeditor-32096edf61bf07c257f750e0fddd3598fdd6789b.tar.bz2 ckeditor-32096edf61bf07c257f750e0fddd3598fdd6789b.zip | |
Upgrade to CKEditor 4.4.3
New plugin for map handling via leaflet
41 files changed, 2543 insertions, 0 deletions
diff --git a/plugins/leaflet/Creating and Editing Leaflet Maps.txt b/plugins/leaflet/Creating and Editing Leaflet Maps.txt new file mode 100644 index 0000000..50f9ffa --- /dev/null +++ b/plugins/leaflet/Creating and Editing Leaflet Maps.txt @@ -0,0 +1,56 @@ +CKEditor Leaflet Map Plugin
+
+
+I. CREATING NEW MAP
+
+1.) Click the Leaflet Map icon in the CKEditor Toolbar. The Dialog window will now pop-up.
+
+Then, it is EITHER of the 2 steps:
+2) Input the Place name (for example: Manila, Philippines).
+
+3.) Input the Latitude and Longitude values of a Place in their corresponding text fields.
+(for example: Latitude = 14.123456 and Longitude = 121.654321)
+
+Then click the OK button. After that, a map will be created, centered on that specified coordinates, with the following default values:
+Width: 400px
+Height: 400px
+Zoom Level: 10
+Map Tile: MapQuestOpen.OSM
+Overview Map (MiniMap): Enabled
+Alignment: Left
+
+Note that if you do BOTH #2 and #3 (which is I think will rarely happen), the value in #2 will be ignored and the values/coordinates in #3 will be used.
+
+
+II. EDITING EXISTING MAP
+
+It is either of the 2 steps:
+
+1.) If you hover the mouse on the map, you will see the map's handle bar (cross hair) in the UPPER LEFT corner of the map,
+you could then double-click that to view or edit the map properties.
+
+2.) With your mouse, select the map to be edited (to set the focus away from other CKEditor objects). Then click the Leaflet Map icon in the CKEditor toolbar.
+
+The Dialog will pop-up and will be set to the properties of the currently selected map.
+Note that the #1 is the preferred way.
+
+To set the current map in a NEW location, either specify a new Place name value in the Search field, or specify a new Lat/Lon values in the corresponding text fields. Note that if you change BOTH the values in the Search field and the Lat/Lon fields (which is I think will rarely happen), the values in the Lat/Lon fields will be used.
+
+You might be wondering why the #1 step has to be done that way.
+The main reason is that CKEditor Leaflet Maps uses the Widget API (introduced in CKEditor 4.3).
+The Widget API introduces innovative features and more plugin flexibility.
+
+For one, the map could have a Map Mode and Widget Mode.
+Map mode uses the mouse wheel or double-click for zooming the map,
+Left-Click+Hold+Drag for panning the map,
+and the possibility to use the map's '+/-' zoom UI buttons.
+
+We could have opted to bind the double-click for showing the map's option
+at the expense of lesser map interaction. However, since I believe that map interaction
+is relatively more important compared to widget's interaction, we need to compromise a bit.
+That's why in order to edit the map's options, we have to do a mouse hover onto the map
+and double-click the default widget's handle bars in the map's upper left corner
+so that the default map's behavior and mouse and key bindings could still be preserved.
+
+Later, we might include the option to edit the map widget's option
+using the Right-Click or Ctrl+Left-Click event bindings.
diff --git a/plugins/leaflet/Installation Guide.txt b/plugins/leaflet/Installation Guide.txt new file mode 100644 index 0000000..f115321 --- /dev/null +++ b/plugins/leaflet/Installation Guide.txt @@ -0,0 +1,203 @@ +I. OVERVIEW
+
+This Leaflet Maps plugin requires CKEditor 4.3 or later versions, and it leverages the power and flexibility
+of Widget API. Hence, the 'widget' plugin is also a hard dependency (which also depends on Line Utilities
+and Clipboard plugins). The Clipboard plugin is already loaded by default in all presets/pre-built packages of CKEditor
+(Basic, Standard, and Full). Hence, we only need to download the Widget plugin (http://ckeditor.com/addon/widget),
+the Line Utilities plugin (http://ckeditor.com/addon/lineutils), and this Leaflet Maps plugin (http://ckeditor.com/addon/leaflet).
+
+For Linux users, after downloading, make sure that the zipped folders or the target CKEditor folders
+ have right read/write/execute permissions, otherwise you might encounter loading issues
+ like the "File x could not be found" notice. You might need to run "sudo chmod 777 -R leaflet",
+ "sudo chmod 777 -R lineutils", and "sudo chmod 777 -R widget" before or after copying them
+ in the appropriate CKEditor folders.
+
+
+II. STANDARD INSTALLATION (Usual Setup)
+
+1) After unzipping the folder, paste the three folders ("lineutils", "leaflet", and "widget")
+ to "ckeditor/plugins" folder. After that, you should have the following folder structures:
+ "ckeditor/plugins/leaflet"
+ "ckeditor/plugins/lineutils"
+ "ckeditor/plugins/widget"
+
+2) Edit the "ckeditor/config.js" file, and add the following:
+ if there's no existing line yet:
+ config.extraPlugins = "lineutils,widget,leaflet";
+
+ otherwise, append it to the existing list, no extra spaces are allowed:
+ config.extraPlugins = "existing_plugin,another_existing_plugin,lineutils,widget,leaflet";
+
+3.) Just to make sure, clear the web browser's cache after modifying your configuration.
+ Clearing the browser's cache is also very important
+ since the CKEditor's JS and CSS assets/components are cached also in the browser.
+
+
+III. DRUPAL INSTALLATION
+
+In Drupal, the typical way to embed the CKEditor WSYIWYG is
+through the CKEditor module (https://drupal.org/project/ckeditor),
+and then loading the corresponding CKEditor JS library (http://ckeditor.com/).
+
+Drupal's CKEditor module (tested on version ) is typically installed to have this internal path:
+ sites/all/modules/ckeditor or sites/all/modules/contrib/ckeditor.
+
+Note that this guide is tested on CKEditor "7.x-1.13", latest version is "7.x-1.14".
+I'll test this guide also in the latest version later.
+
+Moreover, the CKeditor JS Library is typically installed to have this internal path:
+ "sites/all/modules/ckeditor/ckeditor/ckeditor.js" or
+ "sites/all/modules/contrib/ckeditor/ckeditor/ckeditor.js" or
+ "sites/all/libraries/ckeditor/ckeditor.js."
+
+However, installing additional plugins in CKEditor in Drupal is not that straightforward
+as we could see from the issue queues:
+ https://drupal.org/node/2215409#comment-8568207
+ https://drupal.org/node/1930130#comment-7297628
+ https://drupal.org/node/1324554
+ https://drupal.org/node/2215497
+
+Nevertheless, after experimenting with the various ways to enable the additional plugins
+(Line Utilities, Widget, and Leaflet), this is the simplest solution
+(the idea is to copy the plugin folders, enable them, and make them visible in the toolbar):
+
+
+A. DRUPAL INSTALLATION OPTION 1
+
+ 1.) Download and unzip the plugins here (depending on your setup):
+ "sites/all/modules/ckeditor/plugins" or
+ "sites/all/modules/contrib/ckeditor/plugins".
+
+ After that, you should have the following folder structures:
+ "ckeditor/plugins/leaflet"
+ "ckeditor/plugins/lineutils"
+ "ckeditor/plugins/widget"
+
+ 2.) We should now activate the new plugins and add them to the toolbar.
+ This is done by configuring the CKEditor Profile Settings,
+ in which by default is located in:
+ "admin/config/content/ckeditor/edit/Advanced"
+
+ A. Activate the Plugins
+ In EDITOR APPEARANCE >>> Plugins section:
+ Enable the corresponding checkboxes for the Leaflet Maps, Line Utilities,
+ and Widget plugins. These are the texts displayed adjacent to their checkboxes:
+ "Plugin file: leaflet"
+ "Plugin file: lineutils"
+ "Plugin file: widget"
+
+ B. Add them to the Toolbar
+ We should then make the activated plugins visible in the toolbar,
+ skipping this step will make the Leaflet Maps plugin inaccessible in the toolbar.
+
+ In EDITOR APPEARANCE >>> Toolbar section:
+ Drag the Leaflet Maps icon (black-colored) from the 'All Buttons' section
+ to the 'Used Buttons' section.
+
+ We need to configure the Leaflet Maps icon only since the Line Utilities and Widget plugins
+ have no toolbar icons and they will just load in the background.
+
+ 3.) Then, click the Save button. Clear the Drupal's overall cache AND
+ clear the browser's cache. Clearing the browser's cache is also
+ very important since the CKEditor's JS and CSS assets/components
+ are cached also in the browser.
+
+ As indicated above, using the "sites/all/modules/ckeditor/plugins" or
+ "sites/all/modules/contrib/ckeditor/plugins"
+ will work with no additional custom hooks programming since by default
+ CKEditor utilize that folder in the CKEditor Global Profile Settings:
+ "admin/config/content/ckeditor/editg".
+
+ If you go that Global Profile Settings page, this will be indicated
+ (unless you override the default configuration):
+ Path to the CKEditor plugins directory: "%m/plugins"
+
+ In which "%m" refers to the base URL path where the CKEditor module is stored,
+ and defaults to "sites/all/modules/ckeditor" or "sites/all/modules/contrib/ckeditor".
+
+
+B. DRUPAL INSTALLATION OPTION 2
+
+ With the advent of Libraries API (https://drupal.org/project/libraries),
+ Drupal offers more flexibility in the handling of external/third-party libraries,
+ which means a clean mechanism that provides a separation of control between
+ the CKEditor module and CKEditor library, and implies that we could
+ safely upgrade the library and module independent to each other.
+ Having a Libraries folder (sites/all/libraries) is also a very common setup in Drupal.
+
+ This setup assumes that you've already installed and enabled the Libraries API module
+ and configured the CKEditor library (sites/all/libraries/ckeditor).
+ Make sure also that the "Path to CKEditor" settings indicated in
+ the CKEditor's Global Profile (admin/config/content/ckeditor/editg) is
+ indicated as "%l/ckeditor", in which "%l" refers to the "sites/all/libraries".
+
+ 1.) Download and unzip the plugins here:
+ "sites/all/libraries/ckeditor/plugins"
+
+ After that, you should have the following folder structures:
+ "ckeditor/plugins/leaflet"
+ "ckeditor/plugins/lineutils"
+ "ckeditor/plugins/widget"
+
+ 2.) We should now activate the new plugins and add them to the toolbar.
+ This is done by implementing first the hook_ckeditor_plugin() in a custom module:
+
+ function MYMODULE_ckeditor_plugin() {
+ return array(
+ 'leaflet' => array(
+ 'name' => 'Leaflet Maps',
+ 'desc' => t('Plugin for inserting Leaflet Maps.'),
+ 'path' => libraries_get_path('ckeditor') . '/plugins/leaflet/',
+ 'buttons' => array(
+ 'leaflet' => array(
+ 'label' => 'Leaflet Maps',
+ 'icon' => 'icons/leaflet.png',
+ ),
+ ),
+ ),
+ );
+ }
+
+ For convenience, I've created a Drupal utility module specifically for this purpose,
+ check-out the module and instructions here:
+ https://github.com/ranelpadon/drupal-leaflet-maps/tree/master
+
+ Fortunately, we need only to register the Leaflet Maps plugin,
+ the Line Utilities and Widget plugins are automatically registered.
+ The Leaflet Maps Drupal module above is enough for our purpose.
+
+ Now, we configure the CKEditor Profile Settings,
+ in which by default is located in:
+ "admin/config/content/ckeditor/edit/Advanced"
+
+ A. Activate the Plugin
+ In EDITOR APPEARANCE >>> Plugins section:
+ Enable the corresponding checkbox for the Leaflet Maps plugin.
+ This is the description displayed adjacent to its checkbox:
+ "Plugin for inserting Leaflet Maps."
+
+ B. Add them to the Toolbar
+ We should then make the activated plugin visible in the toolbar,
+ skipping this step will make the Leaflet Maps plugin inaccessible in the toolbar.
+
+ In EDITOR APPEARANCE >>> Toolbar section:
+ Drag the Leaflet Maps icon (black-colored) from the 'All Buttons' section
+ to the 'Used Buttons' section.
+
+ We need to configure the Leaflet Maps icon only since
+ the Line Utilities and Widget plugins have no toolbar icons and
+ they will just load in the background.
+
+ 3.) Then, click the Save button. Clear the Drupal's overall cache AND
+ clear the browser's cache. Clearing the browser's cache is also
+ very important since the CKEditor's JS and CSS assets/components
+ are cached also in the browser.
+
+Note that if you configure the Leaflet Maps, Line Utilities, and Widget plugins
+using the handy CKEditor auto-builder (http://ckeditor.com/builder) and
+bundled it with the core "ckeditor.js" file, it will not work in Drupal,
+since as far as I know, the Drupal's CKEditor module
+(or specifically the hook_ckeditor_plugin()) has no support for it yet.
+
+But, outside of Drupal, the Leaflet Maps will work even when
+pre-configured/auto-bundled using the CKEditor builder.
diff --git a/plugins/leaflet/README.md b/plugins/leaflet/README.md new file mode 100644 index 0000000..7cda4f6 --- /dev/null +++ b/plugins/leaflet/README.md @@ -0,0 +1,65 @@ +ckeditor-leaflet
+================
+<strong>OVERVIEW</strong>:<br>
+This CKEditor <a href="http://ckeditor.com/addon/leaflet">Leaflet Maps</a> plugin has three workhorse files:
+<ul>
+ <li><a href="https://github.com/ranelpadon/ckeditor-leaflet/blob/master/plugin.js">Plugin Core</a>: Defines the plugin and attaches the plugin to the CKEditor toolbar.</li>
+ <li><a href="https://github.com/ranelpadon/ckeditor-leaflet/blob/master/dialogs/leaflet.js">Dialog Script</a>: Displays the map options when creating and editing existing maps.</li>
+ <li><a href="https://github.com/ranelpadon/ckeditor-leaflet/blob/master/scripts/mapParser.html">Map Renderer</a>: Parses the map options via URL and renders the map accordingly.</li>
+</ul>
+
+This plugin utilizes the following technologies/libraries: <br>
+<ul>
+ <li><a href="http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget">CKEditor's Widget API</a></li>
+ <li><a href="https://developers.google.com/maps/documentation/javascript/places-autocomplete">Google's Places Library/Type-Ahead Search</a></li>
+ <li><a href="https://developers.google.com/maps/documentation/geocoding/">Google's Geocoding API</a></li>
+ <li><a href="http://leafletjs.com/">Leaflet JS</a></li>
+ <li><a href="https://github.com/leaflet-extras/leaflet-providers">Leaflet - Tile Providers</a></li>
+ <li><a href="https://github.com/Norkart/Leaflet-MiniMap">Leaflet - MiniMap</a></li>
+</ul>
+
+<strong>LIVE DEMO PAGE</strong>:
+<br>Demo page could be found here: http://ranelpadon.github.io/ckeditor-leaflet/index.html
+
+<strong>INSTALLATION</strong>:
+<br>Kindly refer to <a href="https://github.com/ranelpadon/ckeditor-leaflet/blob/master/Installation%20Guide.txt">Installation Guide</a>
+
+<strong>HOW TO USE</strong>:
+<br>Kindly refer to <a href="https://github.com/ranelpadon/ckeditor-leaflet/blob/master/Creating%20and%20Editing%20Leaflet%20Maps.txt">How to Create and Edit Leaflet Maps</a>
+
+<strong>ROAD MAP</strong> (Planned stuff to do):<br><ul>
+<li>Option to show the cursor's map coordinates and scale bar.</li>
+<li>Marker could be dragged and its dragged position must be saved.</li>
+<li>State of the panned map's view must be saved.</li>
+<li>Responsive behavior (for mobile pages).
+<li>Ability to add map caption/annotation
+<li>Display the map preview in the Dialog window.</li>
+<li>Handle multiple markers.</li>
+<li>Add and delete markers.</li>
+<li>Has option to add Panoromio (panoramio.com) layer.</li>
+<li>Add other tile providers.</li>
+<li>R&D other Leaflet plugins that might be useful.</li>
+</ul>
+
+<strong>LICENSE and CREDITS</strong>:<br>
+
+License: <a href="https://www.gnu.org/licenses/lgpl.html">LGPL v3</a> applies.<br>
+Copyright 2014 by Engr. Ranel O. Padon<br>
+ranel.padon@gmail.com<br>
+
+Plugin's icon is a property of <a href="http://simpleicon.com/">simpleicon</a>.
+As indicated in their website, use of their icon is allowed as long as it includes proper credit and backlink.
+
+Thanks to CKEditor, Leaflet, and other great open-source softwares and their unsung developers.<br>
+
+Special thanks also to the insights, guidance, and collaborative support of our <a href="http://travel.cnn.com">CNN Travel</a> team:<br>
+Senior Web Development Manager:<br>
+Brent A. Deverman<br>
+
+Senior Software Engineer:<br>
+Adrian Christopher B. Cruz<br>
+
+Senior QA Analyst:<br>
+Jonathan A. Jacinto<br>
+
+=======================================================
diff --git a/plugins/leaflet/css/contents.css b/plugins/leaflet/css/contents.css new file mode 100644 index 0000000..13740ee --- /dev/null +++ b/plugins/leaflet/css/contents.css @@ -0,0 +1,25 @@ +.leaflet_div {
+ background: #eee;
+ border: 1px solid #ddd;
+ border-radius: 4pxt;
+ box-shadow: 0 1px 1px #fff inset, 0 -1px 0px #ccc inset;
+ margin-right: 1em;
+}
+
+.leaflet_div.align-left {
+ float: left;
+}
+
+.leaflet_div.align-right {
+ float: right;
+}
+
+.leaflet_div.align-center {
+ display: table;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.cke_widget_wrapper:hover>.cke_widget_element {
+ outline: 3px solid yellow !important;
+}
diff --git a/plugins/leaflet/dialogs/leaflet.js b/plugins/leaflet/dialogs/leaflet.js new file mode 100644 index 0000000..2f33765 --- /dev/null +++ b/plugins/leaflet/dialogs/leaflet.js @@ -0,0 +1,9 @@ +CKEDITOR.dialog.add("leaflet",function(){return{title:"Create/Edit Leaflet Map",minWidth:320,minHeight:125,contents:[{id:"location_tab",label:"Location",elements:[{id:"map_geocode",className:"geocode",type:"text",label:"Auto-Search of Coordinates.",setup:function(){this.setValue("")},onShow:function(){var a=jQuery(".geocode input")[0];new google.maps.places.Autocomplete(a);a=jQuery('<style type="text/css" />');a.html(".pac-container { z-index: 100000 !important;} input.minimap { margin-top: 18px !important; }"); +jQuery("head").append(a)}},{type:"html",id:"map_label",className:"label",style:"margin-bottom: -10px;",html:"<p>Manual Input of Coordinates:</p>"},{type:"hbox",widths:["50%","50%"],children:[{id:"map_latitude",className:"latitude",type:"text",label:"Latitude",setup:function(a){""!=a.element.data("lat")&&this.setValue(a.element.data("lat"))}},{id:"map_longitude",className:"longitude",type:"text",label:"Longitude",setup:function(a){""!=a.element.data("lon")&&this.setValue(a.element.data("lon"))}}]}]}, +{id:"options_tab",label:"Options",elements:[{type:"hbox",widths:["38%","38%","24%"],children:[{id:"width",className:"map_width",type:"text",label:"Map Width",setup:function(a){jQuery(".map_width input").attr("placeholder","400");""!=a.element.data("width")&&this.setValue(a.element.data("width"))}},{id:"height",className:"map_height",type:"text",label:"Map Height",setup:function(a){jQuery(".map_height input").attr("placeholder","400");""!=a.element.data("height")&&this.setValue(a.element.data("height"))}}, +{id:"map_zoom",className:"zoom",type:"select",label:"Zoom Level",width:"70px",items:[["1"],["2"],["3"],["4"],["5"],["6"],["7"],["8"],["9"],["10"],["11"],["12"],["13"],["14"],["15"],["16"],["17"],["18"],["19"],["20"]],setup:function(a){if(""!=a.element.data("zoom")){var b=a.element.data("zoom"),a=a.element.getChild(0).$.contentDocument.getElementById("map_container").getAttribute("data-zoom");a!=b&&(b=a);this.setValue(b)}else this.setValue("10")}}]},{type:"hbox",widths:["50%","50%"],children:[{type:"select", +id:"map_tile",className:"tile",label:"Base Map Tile",items:[["MapQuestOpen.OSM"],["MapQuestOpen.Aerial"],["OpenStreetMap.Mapnik"],["OpenStreetMap.DE"],["OpenStreetMap.HOT"],["Esri.DeLorme"],["Esri.NatGeoWorldMap"],["Esri.WorldPhysical"],["Esri.WorldTopoMap"],["Thunderforest.OpenCycleMap"],["Thunderforest.Landscape"],["Stamen.Watercolor"]],setup:function(a){""!=a.element.data("tile")?this.setValue(a.element.data("tile")):this.setValue("MapQuestOpen.OSM")},commit:function(a){a.element.setHtml("");var b= +jQuery(".geocode input").val(),f,g;if(""!=b){var c="https://maps.googleapis.com/maps/api/geocode/json?address="+b+"&sensor=false";jQuery.ajaxSetup({async:!1});jQuery.getJSON(c,function(a){"ZERO_RESULTS"!=a.status?(f=a.results[0].geometry.location.lat,g=a.results[0].geometry.location.lng):alert("The Place could not be Geocoded properly. Kindly choose another one.")})}var c=jQuery(".latitude input").val(),e=jQuery(".longitude input").val(),d=a.element.data("lat"),h=a.element.data("lon");if(""!=c&&""!= +e&&(c!=d&&e!=h||""==b))f=c,g=e;var b=jQuery(".map_width input").val()||"400",c=jQuery(".map_height input").val()||"400",d=jQuery("select.zoom").val(),h=jQuery("select.tile").val(),j=jQuery("select.alignment").val(),i=jQuery(".minimap input:checked").val();void 0==i&&(i="off");e=(new Date).getTime();a.element.setAttribute("id","leaflet_div-"+e);a.element.data("lat",f);a.element.data("lon",g);a.element.data("width",b);a.element.data("height",c);a.element.data("zoom",d);a.element.data("tile",h);a.element.data("minimap", +i);a.element.data("alignment",j);a.element.removeClass("align-left");a.element.removeClass("align-right");a.element.removeClass("align-center");a.element.addClass("align-"+j);mapParserPathFull=mapParserPath+"?lat="+f+"&lon="+g+"&width="+b+"&height="+c+"&zoom="+d+"&tile="+h+"&minimap="+i;d=new CKEDITOR.dom.element("iframe");d.setAttributes({scrolling:"no",id:"leaflet_iframe-"+e,"class":"leaflet_iframe",width:b+"px",height:c+"px",frameborder:0,allowTransparency:!0,src:mapParserPathFull,"data-cke-saved-src":mapParserPathFull}); +a.element.append(d)}},{type:"checkbox",id:"map_mini",className:"minimap",label:"Include MiniMap",setup:function(a){""!=a.element.data("minimap")&&"on"!=a.element.data("minimap")?this.setValue(""):this.setValue("true")}}]},{id:"map_alignment",className:"alignment",type:"select",label:"Alignment",items:[["Left","left"],["Right","right"],["Center","center"]],setup:function(a){""!=a.element.data("alignment")?this.setValue(a.element.data("alignment")):this.setValue("left")}}]}]}});
\ No newline at end of file diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/LICENSE.txt b/plugins/leaflet/scripts/Leaflet-MiniMap/LICENSE.txt new file mode 100644 index 0000000..9871b66 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/LICENSE.txt @@ -0,0 +1,22 @@ +Copyright (c) 2012, Norkart AS
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are
+permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice, this list of
+ conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list
+ of conditions and the following disclaimer in the documentation and/or other materials
+ provided with the distribution.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/example.html b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example.html new file mode 100644 index 0000000..8783e11 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example.html @@ -0,0 +1,37 @@ +<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMap Demo</title>
+ <meta charset="utf-8" />
+
+ <link rel="stylesheet" href="./fullscreen.css" />
+
+ <!-- Leaflet -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet-src.js" type="text/javascript"></script>
+
+ <!-- Leaflet Plugins -->
+ <link rel="stylesheet" href="../src/Control.MiniMap.css" />
+ <script src="../src/Control.MiniMap.js" type="text/javascript"></script>
+
+</head>
+<body>
+ <div id="map" ></div>
+
+ <script type="text/javascript">
+
+ var map = new L.Map('map');
+ var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osmAttrib='Map data © OpenStreetMap contributors';
+ var osm = new L.TileLayer(osmUrl, {minZoom: 5, maxZoom: 18, attribution: osmAttrib});
+
+ map.addLayer(osm);
+ map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),10);
+
+ //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 0, maxZoom: 13, attribution: osmAttrib });
+ var miniMap = new L.Control.MiniMap(osm2, { toggleDisplay: true }).addTo(map);
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_customRects.html b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_customRects.html new file mode 100644 index 0000000..ba27d44 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_customRects.html @@ -0,0 +1,40 @@ +<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMap Demo</title>
+ <meta charset="utf-8" />
+
+ <link rel="stylesheet" href="./fullscreen.css" />
+
+ <!-- Leaflet -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet-src.js" type="text/javascript"></script>
+
+ <!-- Leaflet Plugins -->
+ <link rel="stylesheet" href="../src/Control.MiniMap.css" />
+ <script src="../src/Control.MiniMap.js" type="text/javascript"></script>
+
+</head>
+<body>
+ <div id="map" ></div>
+
+ <script type="text/javascript">
+
+ var map = new L.Map('map');
+ var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osmAttrib='Map data © OpenStreetMap contributors';
+ var osm = new L.TileLayer(osmUrl, {minZoom: 5, maxZoom: 18, attribution: osmAttrib});
+
+ map.addLayer(osm);
+ map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),10);
+
+ //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 0, maxZoom: 13, attribution: osmAttrib });
+
+ var rect1 = {color: "#ff1100", weight: 3};
+ var rect2 = {color: "#0000AA", weight: 1, opacity:0, fillOpacity:0};
+ var miniMap = new L.Control.MiniMap(osm2, { toggleDisplay: true, aimingRectOptions : rect1, shadowRectOptions: rect2}).addTo(map);
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_fixedzoom.html b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_fixedzoom.html new file mode 100644 index 0000000..ef0f22d --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_fixedzoom.html @@ -0,0 +1,37 @@ +<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMap Fixed Zoom Level Demo</title>
+ <meta charset="utf-8" />
+
+ <link rel="stylesheet" href="./fullscreen.css" />
+
+ <!-- Leaflet -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js" type="text/javascript"></script>
+
+ <!-- Leaflet Plugins -->
+ <link rel="stylesheet" href="../src/Control.MiniMap.css" />
+ <script src="../src/Control.MiniMap.js" type="text/javascript"></script>
+
+</head>
+<body>
+ <div id="map" ></div>
+
+ <script type="text/javascript">
+
+ var map = new L.Map('map');
+ var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osmAttrib='Map data © OpenStreetMap contributors';
+ var osm = new L.TileLayer(osmUrl, {minZoom: 2, maxZoom: 18, attribution: osmAttrib});
+
+ map.addLayer(osm);
+ map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),10);
+
+ //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 2, maxZoom: 18, attribution: osmAttrib});
+ var miniMap = new L.Control.MiniMap(osm2, {zoomLevelFixed: 5, autoToggleDisplay: true}).addTo(map);
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_larger.html b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_larger.html new file mode 100644 index 0000000..540aa65 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_larger.html @@ -0,0 +1,40 @@ +<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMap Demo</title>
+ <meta charset="utf-8" />
+
+ <link rel="stylesheet" href="./fullscreen.css" />
+
+ <!-- Leaflet -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js" type="text/javascript"></script>
+
+ <!-- Leaflet Plugins -->
+ <link rel="stylesheet" href="../src/Control.MiniMap.css" />
+ <script src="../src/Control.MiniMap.js" type="text/javascript"></script>
+
+</head>
+<body>
+ <div id="map" ></div>
+
+ <script type="text/javascript">
+
+ var map = new L.Map('map');
+ var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osmAttrib='Map data © OpenStreetMap contributors';
+ var osm = new L.TileLayer(osmUrl, {minZoom: 2, maxZoom: 18, attribution: osmAttrib});
+
+ map.addLayer(osm);
+ map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),10);
+
+ //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 2, maxZoom: 18, attribution: osmAttrib});
+ var miniMap = new L.Control.MiniMap(osm2, {
+ width: 250,
+ height: 250
+ }).addTo(map);
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_layergroup.html b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_layergroup.html new file mode 100644 index 0000000..422234d --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_layergroup.html @@ -0,0 +1,61 @@ +<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMap Demo</title>
+ <meta charset="utf-8" />
+
+ <link rel="stylesheet" href="./fullscreen.css" />
+
+ <!-- Leaflet -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet-src.js" type="text/javascript"></script>
+
+ <!-- Leaflet Plugins -->
+ <link rel="stylesheet" href="../src/Control.MiniMap.css" />
+ <script src="../src/Control.MiniMap.js" type="text/javascript"></script>
+
+ <!-- Extra data source -->
+ <script src="local_pubs_restaurant_norway.js" type="text/javascript"></script>
+
+</head>
+<body>
+ <div id="map" ></div>
+
+ <script type="text/javascript">
+
+ var map = new L.Map('map');
+ var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osmAttrib='Map data © OpenStreetMap contributors';
+ var osm = new L.TileLayer(osmUrl, {minZoom: 5, maxZoom: 18, attribution: osmAttrib});
+
+ function createPopUp(feature, layer) {
+ var string = "";
+ for (var k in feature.properties) {
+ string += k + " : " + feature.properties[k] + "<br>"
+ }
+ layer.bindPopup(string);
+ };
+
+ var pubs1 = L.geoJson(pubsGeoJSON, {
+ onEachFeature: createPopUp
+ });
+
+ map.addLayer(osm);
+ map.addLayer(pubs1);
+ map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),10);
+
+ //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls. This also goes for the GeoJSON layer!
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 0, maxZoom: 13, attribution: osmAttrib });
+ var pubs2 = L.geoJson(pubsGeoJSON, {
+ pointToLayer: function (featuredata, latlng) {
+ return new L.CircleMarker(latlng, {radius: 2});
+ }
+ });
+
+ var layers = new L.LayerGroup([osm2, pubs2]);
+
+ var miniMap = new L.Control.MiniMap(layers, { toggleDisplay: true }).addTo(map);
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_lowzoom.html b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_lowzoom.html new file mode 100644 index 0000000..bdd15e2 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_lowzoom.html @@ -0,0 +1,37 @@ +<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMap Test - Same zoom limits</title>
+ <meta charset="utf-8" />
+
+ <link rel="stylesheet" href="./fullscreen.css" />
+
+ <!-- Leaflet -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet-src.js" type="text/javascript"></script>
+
+ <!-- Leaflet Plugins -->
+ <link rel="stylesheet" href="../src/Control.MiniMap.css" />
+ <script src="../src/Control.MiniMap.js" type="text/javascript"></script>
+
+</head>
+<body>
+ <div id="map" ></div>
+
+ <script type="text/javascript">
+
+ var map = new L.Map('map');
+ var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osmAttrib='Map data © OpenStreetMap contributors';
+ var osm = new L.TileLayer(osmUrl, {minZoom: 0, maxZoom: 18, attribution: osmAttrib});
+
+ map.addLayer(osm);
+ map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),2);
+
+ //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 0, maxZoom: 18, attribution: osmAttrib });
+ var miniMap = new L.Control.MiniMap(osm2, { toggleDisplay: true }).addTo(map);
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_toggleDisplay.html b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_toggleDisplay.html new file mode 100644 index 0000000..8783e11 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/example_toggleDisplay.html @@ -0,0 +1,37 @@ +<!DOCTYPE html>
+<html>
+<head>
+ <title>MiniMap Demo</title>
+ <meta charset="utf-8" />
+
+ <link rel="stylesheet" href="./fullscreen.css" />
+
+ <!-- Leaflet -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
+ <!--[if lte IE 8]><link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.ie.css" /><![endif]-->
+ <script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet-src.js" type="text/javascript"></script>
+
+ <!-- Leaflet Plugins -->
+ <link rel="stylesheet" href="../src/Control.MiniMap.css" />
+ <script src="../src/Control.MiniMap.js" type="text/javascript"></script>
+
+</head>
+<body>
+ <div id="map" ></div>
+
+ <script type="text/javascript">
+
+ var map = new L.Map('map');
+ var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
+ var osmAttrib='Map data © OpenStreetMap contributors';
+ var osm = new L.TileLayer(osmUrl, {minZoom: 5, maxZoom: 18, attribution: osmAttrib});
+
+ map.addLayer(osm);
+ map.setView(new L.LatLng(59.92448055859924, 10.758276373601069),10);
+
+ //Plugin magic goes here! Note that you cannot use the same layer object again, as that will confuse the two map controls
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 0, maxZoom: 13, attribution: osmAttrib });
+ var miniMap = new L.Control.MiniMap(osm2, { toggleDisplay: true }).addTo(map);
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/fullscreen.css b/plugins/leaflet/scripts/Leaflet-MiniMap/example/fullscreen.css new file mode 100644 index 0000000..82b6880 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/fullscreen.css @@ -0,0 +1,7 @@ +body {
+ padding: 0;
+ margin: 0;
+}
+html, body, #map {
+ height: 100%;
+}
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/example/local_pubs_restaurant_norway.js b/plugins/leaflet/scripts/Leaflet-MiniMap/example/local_pubs_restaurant_norway.js new file mode 100644 index 0000000..21cd5ef --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/example/local_pubs_restaurant_norway.js @@ -0,0 +1,777 @@ +var pubsGeoJSON={type:"FeatureCollection",crs:{type:"name",properties:{name:"urn:ogc:def:crs:OGC:1.3:CRS84"}},features:[{type:"Feature",properties:{osm_id:"25332171",name:"Peppes Pizza Nydalen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7664274,59.9499642]}},{type:"Feature",properties:{osm_id:"25332172",name:"Nydalen Eat",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7660479,59.9495958]}},{type:"Feature",properties:{osm_id:"25337471",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7494942,59.9113985]}},{type:"Feature",properties:{osm_id:"25365396",name:"Grefsenkollen", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.8038344,59.9589516]}},{type:"Feature",properties:{osm_id:"25468555",name:"Beer Palace",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7261951,59.9105147]}},{type:"Feature",properties:{osm_id:"25499184", +name:"Kaia kafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[16.673235,68.4083487]}},{type:"Feature",properties:{osm_id:"25509087",name:"Stopp Pressen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"55","addr:postcode"=>"0180","addr:street"=>"Akersgata","email"=>"post@stopp-pressen.net","phone"=>"+47 22414990","website"=>"http://www.stopp-pressen.com/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.7425753,59.9154138]}},{type:"Feature",properties:{osm_id:"25928922",name:"Homla",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.8002444,63.412171]}},{type:"Feature",properties:{osm_id:"26380802",name:"Café con Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7565851,59.9138247]}},{type:"Feature",properties:{osm_id:"27468533",name:"Siste Reis",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"smoking"=>"no","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[11.3854745,59.120134]}},{type:"Feature",properties:{osm_id:"32436941",name:"Fredrikshald Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"leisure"=>"darts"'}, +geometry:{type:"Point",coordinates:[11.3897288,59.1207236]}},{type:"Feature",properties:{osm_id:"32436942",name:"Kongens Brygge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.388207,59.1187173]}},{type:"Feature",properties:{osm_id:"32436944",name:"Nr 13",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[11.3874734,59.1234621]}},{type:"Feature",properties:{osm_id:"32436945",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.3850949,59.1193041]}},{type:"Feature",properties:{osm_id:"32437040",name:"Dickens",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[11.3874522, +59.1225212]}},{type:"Feature",properties:{osm_id:"33209415",name:"Daglighallen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.3957807,63.4224338]}},{type:"Feature",properties:{osm_id:"33728387",name:"Kompasset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"layer"=>"1"'},geometry:{type:"Point",coordinates:[25.7840984,71.1697742]}}, +{type:"Feature",properties:{osm_id:"33730399",name:"Ophelia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7340388,59.9189086]}},{type:"Feature",properties:{osm_id:"33730400",name:"Boletini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"4","addr:street"=>"Holbergs plass"'}, +geometry:{type:"Point",coordinates:[10.7339366,59.9190887]}},{type:"Feature",properties:{osm_id:"33731404",name:"La Sangria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"19","addr:street"=>"Holbergs gate"'},geometry:{type:"Point",coordinates:[10.73364,59.9186818]}},{type:"Feature",properties:{osm_id:"34693421",name:"Dolly Dimples",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO"'},geometry:{type:"Point",coordinates:[10.7369422,59.9132583]}},{type:"Feature",properties:{osm_id:"34693422",name:"Dubliner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"28","addr:postcode"=>"0151","addr:street"=>"Rådhusgaten","wheelchair"=>"limited","wheelchair:description"=>"Small step at entrance and inside. No HC WC."'}, +geometry:{type:"Point",coordinates:[10.7405305,59.9098235]}},{type:"Feature",properties:{osm_id:"34693423",name:"Det Gamle Raadhus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7401013,59.9098611]}},{type:"Feature",properties:{osm_id:"34926021",name:"Den Gode Nabo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"66","addr:postcode"=>"7013","addr:street"=>"Øvre Bakklandet","alt_name"=>"Nabo\'n","website"=>"www.dengodenabo.com","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.4023582,63.4279411]}},{type:"Feature",properties:{osm_id:"37604860",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.3881606,59.1229911]}},{type:"Feature", +properties:{osm_id:"60608792",name:"Café Marhaba",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1","addr:postcode"=>"0165","addr:street"=>"Keysers gate","website"=>"http://www.cafemarhaba.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7441055,59.917032]}},{type:"Feature",properties:{osm_id:"86030241",name:"Kampen Bistro",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"21","addr:postcode"=>"0655","addr:street"=>"Bøgata","email"=>"post@kampenbistro.no","opening_hours"=>"Mo-Fr 15:00-01:00; Sa-Su 13:00-01:00","phone"=>"+47 22197708","website"=>"http://www.kampenbistro.no","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7810776,59.9136608]}},{type:"Feature",properties:{osm_id:"115638860",name:"Marché",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"motel","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7078876,59.426948]}},{type:"Feature",properties:{osm_id:"130124423",name:"Rosendal pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4322711,63.4366548]}},{type:"Feature",properties:{osm_id:"153142045",name:"Trondhjem Mikrobryggeri", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"microbrewery"=>"yes","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.3928913,63.4313285]}},{type:"Feature",properties:{osm_id:"177506613",name:"Credo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"fine_dining"'},geometry:{type:"Point",coordinates:[10.3963635,63.4339688]}},{type:"Feature",properties:{osm_id:"178228376", +name:"Ramp Pub & Spiseri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Trondheim","addr:housenumber"=>"24A","addr:postcode"=>"7042","addr:street"=>"Strandveien","cuisine"=>"burger","food"=>"yes","website"=>"http://lamoramp.net/"'},geometry:{type:"Point",coordinates:[10.4215673,63.4379862]}},{type:"Feature",properties:{osm_id:"190858423",name:"Veikro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.3355525,62.5630377]}},{type:"Feature",properties:{osm_id:"190923403",name:"Taverna Alvdal",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6169693,62.114765]}},{type:"Feature",properties:{osm_id:"190979908",name:"Tiur'n kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9979631,61.588281]}},{type:"Feature",properties:{osm_id:"191014072",name:"Veikro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.3443554,61.1673603]}},{type:"Feature",properties:{osm_id:"191099034",name:"Elgstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[11.54045,60.8832169]}},{type:"Feature",properties:{osm_id:"191128048",name:"Nebbenes",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.146336,60.3156065]}},{type:"Feature",properties:{osm_id:"192887440",name:"Veikro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[10.2826963,59.7672768]}},{type:"Feature",properties:{osm_id:"198222149",name:"Luftslottet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.5811408,58.337151]}},{type:"Feature",properties:{osm_id:"199323677",name:"Haven",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[8.5947635,58.3402334]}},{type:"Feature",properties:{osm_id:"201587060",name:"Lygnasæter",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://lygna.no/"'},geometry:{type:"Point",coordinates:[10.6440032,60.4553045]}},{type:"Feature",properties:{osm_id:"203142751",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[9.3607677,61.912107]}},{type:"Feature",properties:{osm_id:"203992286",name:"Fløyen Folkerestaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.3434683,60.394424]}},{type:"Feature",properties:{osm_id:"211417134",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7990734, +59.383464]}},{type:"Feature",properties:{osm_id:"213578997",name:"Mikrobryggeriet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6682188,59.4383879]}},{type:"Feature",properties:{osm_id:"213580026",name:"Queens Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6649196,59.4356334]}},{type:"Feature", +properties:{osm_id:"213580924",name:"Nattoget",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6614378,59.4356352]}},{type:"Feature",properties:{osm_id:"213589310",name:"Fetter Antons Sportspub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.671358,59.4284803]}},{type:"Feature", +properties:{osm_id:"213589940",name:"Ørevilla kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.6758406,59.4225859]}},{type:"Feature",properties:{osm_id:"213623094",name:"Marché",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"motel","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7061881, +59.42449]}},{type:"Feature",properties:{osm_id:"215077233",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6683579,59.4363593]}},{type:"Feature",properties:{osm_id:"219044076",name:"Nama Sushi & Noodles",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sushi","website"=>"http://www.namasushi.no/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[5.3256496,60.3966028]}},{type:"Feature",properties:{osm_id:"219044081",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"2B","addr:postcode"=>"5003","addr:street"=>"Lodin Leppsgate","contact:phone"=>"+47 55 366060"'},geometry:{type:"Point",coordinates:[5.3251956,60.3963906]}},{type:"Feature",properties:{osm_id:"226059601",name:"China House",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4468864,63.421625]}},{type:"Feature",properties:{osm_id:"226059656",name:"Prego",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","takeaway"=>"yes","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4510937,63.4311859]}},{type:"Feature",properties:{osm_id:"243073233", +name:"Villa Italia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.3540193,63.4173961]}},{type:"Feature",properties:{osm_id:"246234243",name:"Havfruen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4011845,63.4289128]}},{type:"Feature",properties:{osm_id:"246844289",name:null, +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4031393,63.2655012]}},{type:"Feature",properties:{osm_id:"247784843",name:"El Nero",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"description"=>"Mexican","name:old"=>"Pizzanes"'},geometry:{type:"Point",coordinates:[11.4684077,60.1240743]}},{type:"Feature",properties:{osm_id:"247931989", +name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.1272232,62.0741901]}},{type:"Feature",properties:{osm_id:"248045456",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4020851,63.4300469]}},{type:"Feature",properties:{osm_id:"248051573", +name:"Milan's Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.3977452,63.3892172]}},{type:"Feature",properties:{osm_id:"248077406",name:"Oppdalsporten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.8809148,62.6565464]}},{type:"Feature",properties:{osm_id:"249229559", +name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.29209,63.0355207]}},{type:"Feature",properties:{osm_id:"249655007",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.313722,63.1859584]}},{type:"Feature",properties:{osm_id:"249655013",name:"Lundamo vegkro",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2788471,63.1507751]}},{type:"Feature",properties:{osm_id:"249655030",name:"Kjempeplassen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.3060613,62.8411041]}},{type:"Feature",properties:{osm_id:"250144972",name:null,barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4837225,62.8841632]}},{type:"Feature",properties:{osm_id:"251708472",name:"På Sporet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.4653006,60.1238605]}},{type:"Feature",properties:{osm_id:"251710911",name:"Papa Joes",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.4663381,60.120049]}},{type:"Feature",properties:{osm_id:"251711044",name:"Peking Palace",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"description"=>"Chinese"'},geometry:{type:"Point",coordinates:[11.4689163,60.1245273]}},{type:"Feature",properties:{osm_id:"253079360",name:null,barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.1498514,60.0790467]}},{type:"Feature",properties:{osm_id:"255243504",name:"Buvik kafé",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.1753542,63.3082157]}},{type:"Feature",properties:{osm_id:"257455804",name:"Tveter Gård",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4105491,59.8595892]}},{type:"Feature",properties:{osm_id:"258198004",name:"Cafe Løkka",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"8","addr:postcode"=>"7014","addr:street"=>"Dokkgata","cuisine"=>"burger","opening_hours"=>"Mo 11:00-24:00; Tu-Sa 00:00-01:00,11:00-24:00; Su 00:00-01:00,13:00-24:00","website"=>"http://cafelokka.no","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.4085933,63.4335656]}},{type:"Feature",properties:{osm_id:"260259939",name:"Foxtail",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[17.698436,69.0912469]}},{type:"Feature",properties:{osm_id:"260884756",name:"Bølgen & Moi Lysverket",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Bergen","addr:country"=>"NO","addr:housenumber"=>"9","addr:postcode"=>"5015","addr:street"=>"Rasmus Meyers allé","short_name"=>"Bølgen & Moi","website"=>"http://www.bolgenogmoi.no/index.html?catid=1&subcat=6","wheelchair"=>"unknown","wikipedia"=>"http://no.wikipedia.org/wiki/B%C3%B8lgen_%26_Moi"'}, +geometry:{type:"Point",coordinates:[5.329144,60.3893325]}},{type:"Feature",properties:{osm_id:"263710832",name:"Villa Paradiso",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"8","addr:street"=>"Olaf Ryes Plass","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7573902,59.923502]}},{type:"Feature",properties:{osm_id:"263710834",name:"Memphis",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7590485,59.9218801]}},{type:"Feature",properties:{osm_id:"264768989",name:"Biff-compagniet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"steak_house"'},geometry:{type:"Point",coordinates:[10.8043835,59.8797542]}},{type:"Feature",properties:{osm_id:"266562503",name:"Egon", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"228B","addr:postcode"=>"1162","addr:street"=>"Ekebergveien","email"=>"nordstrand@egon.no","fax"=>"+47 22747251","opening_hours"=>"Mo-Th 10:00-23:00; Fr-Sa 10:00-23:30; Su 12:00-23:00","operator"=>"Egon","phone"=>"+47 22295588","website"=>"http://www.egon.no/restaurant/egon+nordstrand","wheelchair"=>"limited"'},geometry:{type:"Point", +coordinates:[10.8004724,59.861318]}},{type:"Feature",properties:{osm_id:"267487786",name:"Bryggerikaia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[14.3729016,67.2829026]}},{type:"Feature",properties:{osm_id:"267962252",name:"Strandbaren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.9508673, +64.0538613]}},{type:"Feature",properties:{osm_id:"268311618",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","drive_through"=>"no","entrance"=>"main","internet_access"=>"wlan","internet_access:fee"=>"no","opening_hours"=>"Mo-Th 11:00-23:00; Fr-Sa 11:00-24:00; Su 13:00-23:00","phone"=>"+47 22225555","smoking"=>"no","website"=>"http://www.peppes.no/","wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[11.0071344,59.9464335]}},{type:"Feature",properties:{osm_id:"269953641",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","website"=>"http://www.peppes.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3242763,60.3917219]}},{type:"Feature",properties:{osm_id:"269953831",name:"TGI Friday’s",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"pub",other_tags:'"website"=>"http://www.fridays.no/Display-Nearest-TGIs/tgi-fridays-ole-bulls-plass","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.3239515,60.3913751]}},{type:"Feature",properties:{osm_id:"270521798",name:"Antikvariatet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4027996,63.4284213]}},{type:"Feature",properties:{osm_id:"270521799",name:"Bare Blåbær", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4122761,63.4338923]}},{type:"Feature",properties:{osm_id:"270521800",name:"Bær og Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4119105,63.4337556]}},{type:"Feature",properties:{osm_id:"270521802",name:"Barmuda", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4124632,63.4345056]}},{type:"Feature",properties:{osm_id:"270521803",name:"Bar Passiar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4109519,63.4342797]}},{type:"Feature",properties:{osm_id:"270588636",name:"Hansbrygga", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.5662088,63.7073885]}},{type:"Feature",properties:{osm_id:"271305047",name:"Sjøbua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.3783046,58.248366]}},{type:"Feature",properties:{osm_id:"272501324",name:"Onkel Oscar",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.496349,64.0139543]}},{type:"Feature",properties:{osm_id:"273459547",name:"Bacalao",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[14.5665064,68.23260780000001]}},{type:"Feature",properties:{osm_id:"273459548",name:"Borsen Spiseri",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[14.5794949,68.2344714]}},{type:"Feature",properties:{osm_id:"278136511",name:"Jekta Fjordstue",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[11.015769,63.8220721]}},{type:"Feature",properties:{osm_id:"278361580",name:"Bårdshaug herregård",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"hotel"'},geometry:{type:"Point",coordinates:[9.8458847,63.2989912]}},{type:"Feature",properties:{osm_id:"278462567",name:"Posten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.1561571,62.4712541]}},{type:"Feature",properties:{osm_id:"278463199",name:"Keisern",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.1585782,62.4713162]}},{type:"Feature",properties:{osm_id:"278464034",name:"Peppe's Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.1580798,62.4716083]}},{type:"Feature",properties:{osm_id:"278464750", +name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.1540036,62.4750059]}},{type:"Feature",properties:{osm_id:"278464773",name:"Tollbugaten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[6.1533685,62.474994]}},{type:"Feature",properties:{osm_id:"278466461",name:"Metz", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.1530697,62.4713044]}},{type:"Feature",properties:{osm_id:"279474501",name:"Kyoto",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sushi","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.3958357,63.432176]}},{type:"Feature",properties:{osm_id:"280139401", +name:"Sekskanten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.9855017,60.9955458]}},{type:"Feature",properties:{osm_id:"280344274",name:"Dirty Nelly's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[6.1508172,62.4713236]}},{type:"Feature",properties:{osm_id:"281614508",name:"Nøsen Fjellstue", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.8492963,60.9390257]}},{type:"Feature",properties:{osm_id:"282263991",name:"Kontoret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[6.1519297,62.4723357]}},{type:"Feature",properties:{osm_id:"282703066",name:"Bien bar", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.338742,60.3769477]}},{type:"Feature",properties:{osm_id:"282751487",name:"Arti",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[5.3275591,60.3954156]}},{type:"Feature",properties:{osm_id:"282763145",name:"Ostello", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.3380645,60.3775281]}},{type:"Feature",properties:{osm_id:"282922015",name:"Brekkeparken folkerestaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6142281,59.2070845]}},{type:"Feature",properties:{osm_id:"283093678", +name:"Taste Of Indian",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[5.3307216,60.3920457]}},{type:"Feature",properties:{osm_id:"283156625",name:"Restauranthuset Carl Johan",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:housenumber"=>"24","addr:street"=>"Olav Tryggvasons gate","phone"=>"73 50 17 14","website"=>"http://carljohan.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.3975124,63.4337492]}},{type:"Feature",properties:{osm_id:"283156629",name:"Erich Christians Skjenkestue",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"loc_name"=>"Norsk Aquavit Bar no. 1"'},geometry:{type:"Point",coordinates:[10.3975187,63.4336823]}},{type:"Feature",properties:{osm_id:"283156631",name:"Cafe 3B",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.4015808,63.4339028]}},{type:"Feature",properties:{osm_id:"283597916",name:"Milano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[13.2005501,65.8455542]}},{type:"Feature",properties:{osm_id:"285986532",name:"Mets",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:null},geometry:{type:"Point",coordinates:[9.6094591,59.2071264]}},{type:"Feature",properties:{osm_id:"285986533",name:"Dubliner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.6108,59.2083646]}},{type:"Feature",properties:{osm_id:"286302066",name:"Lundetangen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[9.6063959,59.207207]}},{type:"Feature",properties:{osm_id:"286302084",name:"Gimle Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.6081827,59.2093283]}},{type:"Feature",properties:{osm_id:"286502507",name:"Trappen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.3197205, +60.3944034]}},{type:"Feature",properties:{osm_id:"286791638",name:"Lundetangen Spiseri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6049212,59.2051139]}},{type:"Feature",properties:{osm_id:"286791639",name:"Bryggeriet Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6048928, +59.2051685]}},{type:"Feature",properties:{osm_id:"286791723",name:"Henrik",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6056948,59.2077598]}},{type:"Feature",properties:{osm_id:"287399669",name:"Kvalitet veikro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6149662,59.1856846]}}, +{type:"Feature",properties:{osm_id:"287763936",name:"Henrik øl og vinstove",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"10","addr:street"=>"Engen","description"=>"Got a a huge beer selection, the place in town if you love craft beer.","website"=>"http://www.ve.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.3207274,60.3917405]}},{type:"Feature",properties:{osm_id:"287776643",name:"Bella Napoli", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.3528219,60.3173651]}},{type:"Feature",properties:{osm_id:"287776646",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Nesttun","addr:housenumber"=>"100","addr:postcode"=>"5221","addr:street"=>"Nesttunveien","website"=>"https://www.peppes.no/pp08/app/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[5.3530874,60.3178871]}},{type:"Feature",properties:{osm_id:"288500700",name:"Pohlmanns Matbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.6538763,59.1402185]}},{type:"Feature",properties:{osm_id:"288500701",name:"Jimmys",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[9.6534378,59.1405216]}},{type:"Feature",properties:{osm_id:"288500703",name:"Parkrestauranten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.6546935,59.1401612]}},{type:"Feature",properties:{osm_id:"288500759",name:"CaffeCompagniet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.651071, +59.1390322]}},{type:"Feature",properties:{osm_id:"288758731",name:"Café Osebro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6565146,59.1443788]}},{type:"Feature",properties:{osm_id:"288758735",name:"Café Osebro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.656085,59.1447412]}}, +{type:"Feature",properties:{osm_id:"288758739",name:"Kafé K",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6560841,59.1438212]}},{type:"Feature",properties:{osm_id:"288758742",name:"Det blå huset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.656089,59.1440517]}},{type:"Feature", +properties:{osm_id:"288758786",name:"Michel Seylmagers hus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6541746,59.1411325]}},{type:"Feature",properties:{osm_id:"288758790",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6460918,59.1394034]}},{type:"Feature", +properties:{osm_id:"288758793",name:"Jonas B. Gundersen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6465842,59.1395742]}},{type:"Feature",properties:{osm_id:"288776810",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6006748,59.1967001]}},{type:"Feature", +properties:{osm_id:"289529134",name:"Dolly dimples",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.3440606,60.3612622]}},{type:"Feature",properties:{osm_id:"289533515",name:"Peppes pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.3408862,60.3734685]}},{type:"Feature",properties:{osm_id:"290149960", +name:"Hopsjo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[8.7165049,63.6287095]}},{type:"Feature",properties:{osm_id:"292102329",name:"Sagene lunsjbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7564649,59.9375292]}},{type:"Feature", +properties:{osm_id:"292143394",name:"The Nighthawk Diner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"15","addr:postcode"=>"0553","addr:street"=>"Seilduksgata","opening_hours"=>"Mo 07:00-23:00; Tu-We 07:00-00:00; Th 07:00-01:00; Fr 07:00-02:30; Sa 10:00-02:30; Su 10:00-23:00","phone"=>"+47 96627327","website"=>"http://www.nighthawkdiner.com/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.7588894,59.925387]}},{type:"Feature",properties:{osm_id:"292143397",name:"Kontrasté",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"12","addr:street"=>"Olaf Ryes Plass","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7585314,59.9234831]}},{type:"Feature",properties:{osm_id:"292143398",name:"Fontés",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"10","addr:street"=>"Olaf Ryes Plass","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7579802,59.923491]}},{type:"Feature",properties:{osm_id:"292143399",name:"Bistro Brocante",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"40","addr:street"=>"Thorvald Meiers Gate","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7593415,59.9236999]}},{type:"Feature",properties:{osm_id:"292143400",name:"Ryes",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"american","outdoor_seating"=>"yes","smoking"=>"outside","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.758957,59.922261]}},{type:"Feature",properties:{osm_id:"292143401",name:"Mucho Mas",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"36","addr:street"=>"Thorvald Meiers Gate","cuisine"=>"mexican","website"=>"http://www.muchomas.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7593318,59.9241784]}},{type:"Feature",properties:{osm_id:"292143402",name:"Tamara",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point", +coordinates:[10.761444,59.9256437]}},{type:"Feature",properties:{osm_id:"292143405",name:"Lille Asia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7571076,59.921874]}},{type:"Feature",properties:{osm_id:"292145362",name:"Hjort mat & bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"7","addr:street"=>"Østre Elvebakke","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7549913,59.9190164]}},{type:"Feature",properties:{osm_id:"292145373",name:"Elvebredden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"16","addr:street"=>"Hausmanns gate","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7549772,59.9188052]}},{type:"Feature",properties:{osm_id:"292145389",name:"Südøst",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"5","addr:street"=>"Trondheimsveien","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7606559,59.9181822]}},{type:"Feature",properties:{osm_id:"292145479",name:"Delicatessen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"8","addr:street"=>"Søndre gate","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7582049,59.9187005]}},{type:"Feature",properties:{osm_id:"292145621",name:"Anarkali",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"76","addr:street"=>"Thorvald Meiers Gate","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7595646,59.9192652]}},{type:"Feature",properties:{osm_id:"292965965",name:"Bistroen",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.6585857,59.8495984]}},{type:"Feature",properties:{osm_id:"293400209",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6588362,59.8495676]}},{type:"Feature",properties:{osm_id:"293476776",name:"Bydels kro",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7734065,59.9127213]}},{type:"Feature",properties:{osm_id:"295452531",name:"Camillas kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7957928,60.583281]}},{type:"Feature",properties:{osm_id:"295619711",name:"Kafé Celsius",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"19","addr:postcode"=>"0158","addr:street"=>"Rådhusgata","alt_name"=>"Celsius","email"=>"post@kafecelsius.no","phone"=>"+47 22424539","website"=>"http://www.kafecelsius.no","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7403188,59.9102691]}},{type:"Feature",properties:{osm_id:"295701667",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"brand"=>"By the Way"'},geometry:{type:"Point",coordinates:[9.9966658,60.5622693]}},{type:"Feature",properties:{osm_id:"296824731",name:"Freyborgstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6047959,59.6418673]}},{type:"Feature",properties:{osm_id:"299089349",name:"Rainer's",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[29.7167153,70.63032720000001]}},{type:"Feature",properties:{osm_id:"299612780",name:"San Marino Pizzeria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[5.3676624,60.3614326]}},{type:"Feature",properties:{osm_id:"302034426",name:"Roald & Umberto",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"56","addr:postcode"=>"0656","addr:street"=>"Schweigaards gate","cuisine"=>"italian","email"=>"reservation@roald-umberto.com","facebook"=>"http://www.facebook.com/pages/Roald-Umberto-Taverna-italiana/198558030218894","opening_hours"=>"Tu-Th 16:00-23:00; Fr-Sa 16:00-24:00; Su 15:00-23:00","phone"=>"+47 24071972","website"=>"http://www.roald-umberto.com"'},geometry:{type:"Point", +coordinates:[10.7696361,59.908379]}},{type:"Feature",properties:{osm_id:"305722875",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.8550926,61.0825431]}},{type:"Feature",properties:{osm_id:"306220218",name:"Rompa Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6887791,59.4627573]}}, +{type:"Feature",properties:{osm_id:"307505815",name:"TGI Friday",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"35","addr:postcode"=>"0162","addr:street"=>"Karl Johans gate","fax"=>"+47 22336100","phone"=>"+47 22333200","website"=>"http://www.fridays.no/"'},geometry:{type:"Point",coordinates:[10.7379569,59.9141729]}},{type:"Feature",properties:{osm_id:"307506585",name:"Peppes Pizza", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"4","addr:postcode"=>"0158","addr:street"=>"Stortingsgata","phone"=>"+47 22225555","website"=>"http://www.peppes.no/"'},geometry:{type:"Point",coordinates:[10.738591,59.9128377]}},{type:"Feature",properties:{osm_id:"307904848",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:housenumber"=>"33A","addr:street"=>"Vågsgaten","cuisine"=>"pizza","website"=>"http://www.dolly.no/shop/restauranter/vestlandet","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7396116,58.8526219]}},{type:"Feature",properties:{osm_id:"307904849",name:"Diva",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"1","addr:postcode"=>"4306","addr:street"=>"Mauritz Kartevolds plass","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[5.7404541,58.8516346]}},{type:"Feature",properties:{osm_id:"307906728",name:"Sandnes brygge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"15","phone"=>"+47 51 67 38 90","website"=>"www.sandnesbrygge.no"'},geometry:{type:"Point",coordinates:[5.7420642,58.8517321]}},{type:"Feature",properties:{osm_id:"307923560",name:"Avd 7",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[13.201799,65.9699081]}},{type:"Feature",properties:{osm_id:"308002095",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"33","addr:postcode"=>"4306","addr:street"=>"Vågsgaten 33","cuisine"=>"steak_house","website"=>"http://www.bighorn.no/Vaare-restauranter/Sandnes"'},geometry:{type:"Point", +coordinates:[5.7395456,58.8522247]}},{type:"Feature",properties:{osm_id:"308022422",name:"Pizzeria Al-Forno",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.7372426,58.8507728]}},{type:"Feature",properties:{osm_id:"308128380",name:"Big Horn Steakhouse",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[10.4322023,59.8362206]}},{type:"Feature",properties:{osm_id:"308146881",name:"China Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.733555,58.8503313]}},{type:"Feature",properties:{osm_id:"308983919",name:"Thai Away",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"thai","website"=>"http://www.thaiaway.no/"'}, +geometry:{type:"Point",coordinates:[5.3190206,60.3907907]}},{type:"Feature",properties:{osm_id:"308983988",name:"Boha",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.boha.no/","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.321046,60.3914694]}},{type:"Feature",properties:{osm_id:"309470778",name:"Jonathan Sushi & Asian Dining",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7867365,59.8802876]}},{type:"Feature",properties:{osm_id:"309493829",name:"Lisbetsæther",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.9279625,63.249798]}},{type:"Feature",properties:{osm_id:"310780987",name:"Markveien Mat & Vinhus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"12","addr:street"=>"Torvbakkgata","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7571763,59.9197887]}},{type:"Feature",properties:{osm_id:"311166353",name:"Oslo Mikrobryggeri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"microbrewery"=>"yes","website"=>"http://www.mikrobryggeriet.no/index.php"'},geometry:{type:"Point", +coordinates:[10.7242288,59.9242328]}},{type:"Feature",properties:{osm_id:"311166509",name:"Lorry",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"12","addr:postcode"=>"0350","addr:street"=>"Parkveien","fax"=>"+47 22609809","name:old"=>"Parkcafeen","opening_hours"=>"Mo 11:00-01:00; Tu-Sa 11:00-03:30; Su 12:00-01:00","phone"=>"+47 22696904","website"=>"http://www.lorry.no/","wheelchair"=>"no","wikipedia"=>"no:Lorry_(restaurant)"'}, +geometry:{type:"Point",coordinates:[10.7288492,59.9207323]}},{type:"Feature",properties:{osm_id:"311268456",name:"Egon Byporten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"6","addr:postcode"=>"0154","addr:street"=>"Jernbanetorget","email"=>"byporten@egon.no","fax"=>"+47 23362047","opening_hours"=>"Mo-Th 06:30-23:00; Fr 06:30-23:30; Sa 07:00-23:30; Su 07:00-23:00","operator"=>"Egon","phone"=>"+47 23362046","website"=>"http://www.egon.no/restaurant/egon+byporten","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7512936,59.9118044]}},{type:"Feature",properties:{osm_id:"311672507",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6076956,59.2073589]}},{type:"Feature",properties:{osm_id:"313231596",name:"Opsahlgården;Christans Kjeller",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[9.645518,59.6640134]}},{type:"Feature",properties:{osm_id:"313231598",name:"Peckels Resept",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6459826,59.663215]}},{type:"Feature",properties:{osm_id:"313801904",name:"Henry's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[11.1090275,59.2932503]}},{type:"Feature",properties:{osm_id:"315230163",name:"Cafe Cathedral",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"27","addr:postcode"=>"0154","addr:street"=>"Dronningens gate","email"=>"post@cafecathedral.no","opening_hours"=>"Mo-Su 09:00-","phone"=>"+47 22330035","website"=>"http://cafecathedral.no/"'},geometry:{type:"Point", +coordinates:[10.7473008,59.9118272]}},{type:"Feature",properties:{osm_id:"315230164",name:"Baltazar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"27","addr:postcode"=>"0154","addr:street"=>"Dronningens gate","cuisine"=>"italian","email"=>"baltazar@baltazar.no","fax"=>"+47 23357061","opening_hours"=>"Mo-Sa 11:30-","phone"=>"+47 23357060","website"=>"http://www.baltazar.no/ristorante","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7474523,59.912017]}},{type:"Feature",properties:{osm_id:"315230165",name:"Sir Winston",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7464972,59.9117615]}},{type:"Feature",properties:{osm_id:"315230167",name:"Jambo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","cuisine"=>"chinese","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7450148,59.9123574]}},{type:"Feature",properties:{osm_id:"315230168",name:"The Scotsman",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"17","addr:street"=>"Karl Johans gate","wheelchair"=>"limited"'},geometry:{type:"Point", +coordinates:[10.7435954,59.9125642]}},{type:"Feature",properties:{osm_id:"315230172",name:"3 Brødre",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.742372,59.912876]}},{type:"Feature",properties:{osm_id:"315233911",name:"Grand Café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"31","addr:postcode"=>"0159","addr:street"=>"Karl Johans gate","opening_hours"=>"Mo-Fr 06:30-10:00, 11:00-16:00, 17:00-23:00; Sa 07:00-11:00, 12:00-16:00, 17:00-23:00; Su 07:00-12:00, 13:00-17:00, 17:00-22:00","phone"=>"+47 23 21 20 00","website"=>"http://grand.no/no/Restauranter--Barer/Grand-Cafe/","wheelchair"=>"limited","wikipedia"=>"no:Grand_Café"'},geometry:{type:"Point",coordinates:[10.7392982,59.913777]}},{type:"Feature", +properties:{osm_id:"315233914",name:"Hard Rock Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"45","addr:street"=>"Karl Johans gate","email"=>"oslo@hardrockcafe.no","fax"=>"+47 22420260","phone"=>"+47 40006260","website"=>"http://www.hardrockcafe.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7366042,59.9145536]}},{type:"Feature",properties:{osm_id:"319980266", +name:"Vognmand Nilsen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7629215,59.9114324]}},{type:"Feature",properties:{osm_id:"320989868",name:"Sølenstua kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.7316179, +61.8369914]}},{type:"Feature",properties:{osm_id:"325067585",name:"Sawan",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"thai"'},geometry:{type:"Point",coordinates:[10.7157254,59.9188268]}},{type:"Feature",properties:{osm_id:"325229505",name:"Pappas Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.8091028, +63.266247]}},{type:"Feature",properties:{osm_id:"325229596",name:"Fannarheimr",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"hotel"'},geometry:{type:"Point",coordinates:[9.8147617,63.2657111]}},{type:"Feature",properties:{osm_id:"328797804",name:"Lille kampen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7817197, +59.9139242]}},{type:"Feature",properties:{osm_id:"330946894",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7523858,59.9362576]}},{type:"Feature",properties:{osm_id:"333620111",name:"Isehaug",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.7231662,61.9043743]}}, +{type:"Feature",properties:{osm_id:"333735412",name:"Gate of India",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7154741,59.9286437]}},{type:"Feature",properties:{osm_id:"333736465",name:"Chinatown",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7165943,59.9294629]}}, +{type:"Feature",properties:{osm_id:"335988066",name:"Bryggen Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","cuisine"=>"sushi"'},geometry:{type:"Point",coordinates:[10.724626,59.9100754]}},{type:"Feature",properties:{osm_id:"336032055",name:"Madserud Gård",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.6945757,59.9236062]}},{type:"Feature",properties:{osm_id:"340047873",name:"Lofotstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7124531,59.9271946]}},{type:"Feature",properties:{osm_id:"344509174",name:"Nodee",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7088669, +59.9283461]}},{type:"Feature",properties:{osm_id:"347047883",name:"Knettsetra",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"description"=>"Restaurant, Pub, Vaffelstue","opening_hours"=>"9:30-17:00"'},geometry:{type:"Point",coordinates:[12.2183956,61.3164067]}},{type:"Feature",properties:{osm_id:"347548299",name:"Hukodden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[10.6744505,59.8950008]}},{type:"Feature",properties:{osm_id:"355320757",name:"Bølgen og Moi Nydalen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7647416,59.9500256]}},{type:"Feature",properties:{osm_id:"355580984",name:"Brasserie Hansken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0158","addr:street"=>"Akersgata","alt_name"=>"Hansken","email"=>"post@brasseriehansken.no","fax"=>"+47 22422403","opening_hours"=>"Mo-Fr 11:30-; Sa 13:00-","phone"=>"+47 22426088","website"=>"http://www.brasseriehansken.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7395168,59.9105228]}},{type:"Feature",properties:{osm_id:"355614091",name:null,barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4861225,59.809544]}},{type:"Feature",properties:{osm_id:"355660197",name:"Thai Market",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"thai"'},geometry:{type:"Point",coordinates:[10.9366098,59.2134123]}},{type:"Feature",properties:{osm_id:"355660199",name:"Katti",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.9384337,59.2130938]}},{type:"Feature",properties:{osm_id:"356305064",name:"Checkpoint Charlie",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.7288698,58.9699641]}},{type:"Feature",properties:{osm_id:"356306289",name:"Hall Toll",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7294819,58.9736439]}},{type:"Feature",properties:{osm_id:"358485745",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7258152,59.9103902]}},{type:"Feature",properties:{osm_id:"358485746", +name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7252677,59.9089982]}},{type:"Feature",properties:{osm_id:"358485748",name:"Jacob Aall",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7255973,59.9091806]}},{type:"Feature",properties:{osm_id:"358485760",name:"Il Barbera",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"1","addr:postcode"=>"0250","addr:street"=>"Filipstad Brygge","email"=>"ilbarbera@hotmail.com","opening_hours"=>"Mo-We 16:00-01:00; Th 16:00-03:00; Fr 14:00-03:00; Sa-Su 16:00-03:00","phone"=>"+47 21668440","website"=>"http://www.ilbarbera.no/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.7236735,59.9105549]}},{type:"Feature",properties:{osm_id:"359186332",name:"Travkroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[10.4694931,63.4297227]}},{type:"Feature",properties:{osm_id:"359186420",name:"IKEA",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional","website"=>"http://www.ikea.com/no/no/store/leangen/restaurant","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.4736569,63.4287158]}},{type:"Feature",properties:{osm_id:"362907241",name:"Kafé Akvariet",barrier:"entrance",highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"capacity:persons"=>"115"'},geometry:{type:"Point",coordinates:[5.7279667,58.9674885]}},{type:"Feature",properties:{osm_id:"365286717",name:"Holdeplassen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null}, +geometry:{type:"Point",coordinates:[10.3931328,63.4318383]}},{type:"Feature",properties:{osm_id:"366665596",name:"Skei Vikingland",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.083199,61.3393886]}},{type:"Feature",properties:{osm_id:"370771983",name:"Sankt Olav Lunsj",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"cuisine"=>"regional","opening_hours"=>"11:30-"'}, +geometry:{type:"Point",coordinates:[12.1563641,61.3225495]}},{type:"Feature",properties:{osm_id:"370771984",name:"Al Dente",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[12.1545794,61.3232159]}},{type:"Feature",properties:{osm_id:"371630623",name:"Elias",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[10.9903491,59.2496545]}},{type:"Feature",properties:{osm_id:"372716520",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.9520803,59.203704]}},{type:"Feature",properties:{osm_id:"372716536",name:"Majorstuen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.9553486,59.2033886]}},{type:"Feature",properties:{osm_id:"372716562",name:"Mer",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.934078,59.2133886]}},{type:"Feature",properties:{osm_id:"372925575",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point", +coordinates:[10.9404316,59.2114592]}},{type:"Feature",properties:{osm_id:"373122830",name:"Pizzeria al Forno Stokkaveien",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[5.7158273,58.9697042]}},{type:"Feature",properties:{osm_id:"376579456",name:"Harvey's Sportsbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO"'}, +geometry:{type:"Point",coordinates:[10.7506981,59.912449]}},{type:"Feature",properties:{osm_id:"377749337",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.3916424,63.4308129]}},{type:"Feature",properties:{osm_id:"378726080",name:"Ciao Bella",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:housenumber"=>"80","addr:street"=>"Innherredsveien","cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.4321612,63.4369705]}},{type:"Feature",properties:{osm_id:"379817461",name:"AiSuma",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4039542,63.4322393]}},{type:"Feature",properties:{osm_id:"380355308", +name:"Napoli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[10.3906997,63.4308222]}},{type:"Feature",properties:{osm_id:"383735732",name:"Le Benjamin",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"6","addr:street"=>"Søndre gate","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7579166,59.9187052]}},{type:"Feature",properties:{osm_id:"383996246",name:"Sushi & Dinner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1","addr:street"=>"Hegdehaugsveien","cuisine"=>"sushi","phone"=>"22592600","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7332252,59.9204315]}},{type:"Feature",properties:{osm_id:"383996262", +name:"Bislett Kebab House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:street"=>"Hegdehaugsveien","cuisine"=>"kebab","phone"=>"22468044","website"=>"http://www.bislettkebabhouse.no/"'},geometry:{type:"Point",coordinates:[10.7336028,59.9204358]}},{type:"Feature",properties:{osm_id:"383997705",name:"Sushi Express",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","cuisine"=>"sushi","phone"=>"22608740","website"=>"http://www.sushiexpress.no/"'},geometry:{type:"Point",coordinates:[10.7300666,59.921266]}},{type:"Feature",properties:{osm_id:"383999474",name:"Flamenco Pizza Sentrum",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"27A","addr:street"=>"Fredensborgveien","cuisine"=>"pizza","phone"=>"22646464","website"=>"http://www.flamencopizza.no/"'}, +geometry:{type:"Point",coordinates:[10.7481461,59.9190457]}},{type:"Feature",properties:{osm_id:"385719799",name:"Bangkok Café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"23","addr:street"=>"Dronningens gate","cuisine"=>"thai","opening_hours"=>"Mo-Th 12:00-21:00; Fr-Sa 12:00-22:00; Su 14:00-21:00","phone"=>"+4773535600"'},geometry:{type:"Point",coordinates:[10.390525,63.431794]}},{type:"Feature",properties:{osm_id:"385719944", +name:"Mien Trung Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"asian"'},geometry:{type:"Point",coordinates:[10.3898782,63.430124]}},{type:"Feature",properties:{osm_id:"386579882",name:"Lille",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.3942716,63.4307537]}}, +{type:"Feature",properties:{osm_id:"386579886",name:"Frati",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.3945863,63.4321745]}},{type:"Feature",properties:{osm_id:"386579900",name:"Jonathan",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.398364,63.4317844]}},{type:"Feature",properties:{osm_id:"387527206",name:"Milano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.4141915,63.4309164]}},{type:"Feature",properties:{osm_id:"390023977",name:"Byrkjedalstunet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'}, +geometry:{type:"Point",coordinates:[6.3166502,58.7794743]}},{type:"Feature",properties:{osm_id:"391946419",name:"Garage",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.3237693,60.3894562]}},{type:"Feature",properties:{osm_id:"391946421",name:"Fincken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"gay"=>"yes"'},geometry:{type:"Point", +coordinates:[5.3229187,60.389689]}},{type:"Feature",properties:{osm_id:"391946422",name:"Apollon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"music"=>"recorded","shop"=>"music","website"=>"http://www.apollon.no/"'},geometry:{type:"Point",coordinates:[5.3231813,60.3896191]}},{type:"Feature",properties:{osm_id:"391946424",name:"Naboen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"microbrewery"=>"yes","operator"=>"Naboen","website"=>"http://www.grannen.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.320567,60.3911184]}},{type:"Feature",properties:{osm_id:"391946425",name:"Baran",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.3197632,60.3905756]}},{type:"Feature",properties:{osm_id:"391952497",name:"Peppes pizza",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.3392831,60.37679]}},{type:"Feature",properties:{osm_id:"392056763",name:"Bar 1",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7274138,59.9108398]}},{type:"Feature",properties:{osm_id:"392057322", +name:"Lofoten Fiskerestaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"75","addr:postcode"=>"0250","addr:street"=>"Stranden","cuisine"=>"seafood","email"=>"lofoten@fiskerestaurant.no","name:en"=>"Lofoten","opening_hours"=>"Mo-Fr 11:00-23:00; Su 12:00-22:00","phone"=>"+47 22830808","website"=>"http://www.lofoten-fiskerestaurant.no"'},geometry:{type:"Point",coordinates:[10.7243883, +59.9085693]}},{type:"Feature",properties:{osm_id:"392057333",name:"Lektern",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7278859,59.9094929]}},{type:"Feature",properties:{osm_id:"392059059",name:"Feinschmecker",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"5","addr:postcode"=>"0265","addr:street"=>"Balchens gate","fax"=>"+47 22129388","opening_hours"=>"Mo-Sa 17:00-","phone"=>"+47 22129380","website"=>"http://www.feinschmecker.no/"'}, +geometry:{type:"Point",coordinates:[10.7079502,59.9184214]}},{type:"Feature",properties:{osm_id:"394001914",name:"Dolly Dimples",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.7253024,58.885788]}},{type:"Feature",properties:{osm_id:"394076388",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[10.0216383,59.0492895]}},{type:"Feature",properties:{osm_id:"403876923",name:"Amigos",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"mexican"'},geometry:{type:"Point",coordinates:[7.9917256,58.1447047]}},{type:"Feature",properties:{osm_id:"409932657",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[11.2950046,59.7033426]}},{type:"Feature",properties:{osm_id:"412755412",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[5.6292287,58.7695381]}},{type:"Feature",properties:{osm_id:"412755429",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point", +coordinates:[5.8369903,58.7794626]}},{type:"Feature",properties:{osm_id:"414760960",name:"China Plaza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[11.1145855,59.2823985]}},{type:"Feature",properties:{osm_id:"415597143",name:"Kaktus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.4029543,63.4285269]}},{type:"Feature",properties:{osm_id:"416411445",name:"Dønhaugkjedlaren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.8666785,59.930755]}},{type:"Feature",properties:{osm_id:"416547926",name:"Harry Pepper",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[5.7320604,58.9726492]}},{type:"Feature",properties:{osm_id:"416555309",name:"Hansen Hjørnet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"description"=>"Open Air. Only Summer."'},geometry:{type:"Point",coordinates:[5.7307422,58.9712452]}},{type:"Feature",properties:{osm_id:"416929801",name:"Sjøterrassen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[9.6045759,58.9390408]}},{type:"Feature",properties:{osm_id:"420940328",name:"Spisekroken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[11.3880101,59.1232568]}},{type:"Feature",properties:{osm_id:"420980097",name:"Campino",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[11.3852827,59.1204887]}},{type:"Feature",properties:{osm_id:"428063056",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.6827626,59.9205249]}},{type:"Feature",properties:{osm_id:"428063057",name:"Peppes",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[10.6843247,59.9200173]}},{type:"Feature",properties:{osm_id:"428063065",name:"Via Condotti",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6861443,59.9220176]}},{type:"Feature",properties:{osm_id:"428787918",name:"Oslo spiseforretning",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7673547,59.9055522]}},{type:"Feature",properties:{osm_id:"430626863",name:"Skarven",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.9564895,69.6469584]}},{type:"Feature",properties:{osm_id:"430626865",name:"Ølhallen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.9504773, +69.6458442]}},{type:"Feature",properties:{osm_id:"431074071",name:"Turistua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[23.6918761,70.6623871]}},{type:"Feature",properties:{osm_id:"431219762",name:"Lille Østerrike",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Hovin i Telemark","addr:housenumber"=>"1","addr:postcode"=>"3652","addr:street"=>"Sørum","phone"=>"94884684"'}, +geometry:{type:"Point",coordinates:[9.0304022,59.8740411]}},{type:"Feature",properties:{osm_id:"433516255",name:"Ararat",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Sa 10:00-23:00; Su 12:00-23:00","phone"=>"+47 64857200"'},geometry:{type:"Point",coordinates:[10.8443216,59.7546981]}},{type:"Feature",properties:{osm_id:"433545522",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.4676116,60.1242536]}},{type:"Feature",properties:{osm_id:"434638206",name:"Driv",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.9621696,69.6520357]}},{type:"Feature",properties:{osm_id:"435107146",name:"SiT Kafe Dragvoll",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"operator"=>"Studentsamskipnaden i Trondheim"'},geometry:{type:"Point",coordinates:[10.4687316,63.4085103]}},{type:"Feature",properties:{osm_id:"435716024",name:"Seilmakerfruen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.1264874,58.6320624]}},{type:"Feature",properties:{osm_id:"436625087",name:"Du Verden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[14.5661213,68.2323769]}},{type:"Feature",properties:{osm_id:"438179083",name:"Restaurant Fiorentina",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.17627,63.3077189]}},{type:"Feature",properties:{osm_id:"440104260",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.6283767,59.3493544]}},{type:"Feature",properties:{osm_id:"441052995",name:"Napoli Pizzaria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","opening_hours"=>"Mo-Sa 12:00-00:00; Su 00:00-02:00"'},geometry:{type:"Point",coordinates:[6.7257404,61.9052464]}},{type:"Feature",properties:{osm_id:"441225121",name:null,barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza;kebab"'},geometry:{type:"Point",coordinates:[9.2335403,60.9853843]}},{type:"Feature",properties:{osm_id:"441225192",name:"Fagernes Cafe og Kinarestaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[9.2403405,60.9852928]}},{type:"Feature",properties:{osm_id:"441346641", +name:"Pubben",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7210424,59.9402152]}},{type:"Feature",properties:{osm_id:"441346642",name:"Frederikke",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7216024,59.9404252]}},{type:"Feature",properties:{osm_id:"441387665",name:"Vardestua", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[7.1269951,62.7482811]}},{type:"Feature",properties:{osm_id:"441527397",name:"Engelsviken Brygge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7357619,59.252022]}},{type:"Feature",properties:{osm_id:"441543693", +name:"Løvebakken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0158","addr:street"=>"Stortingsgata","email"=>"post@lovebakken.no","phone"=>"+47 22424080","website"=>"http://www.lovebakken.no/"'},geometry:{type:"Point",coordinates:[10.7389473,59.9128243]}},{type:"Feature",properties:{osm_id:"441565072",name:"Stortorvets Gjæstgiveri",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1","addr:street"=>"Grensen","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7446894,59.9134052]}},{type:"Feature",properties:{osm_id:"441599522",name:"Stiklestad Nasjonale Kultursenter",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"museum"'}, +geometry:{type:"Point",coordinates:[11.5628237,63.7959326]}},{type:"Feature",properties:{osm_id:"441895720",name:"Verdensteateret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.958978,69.6521685]}},{type:"Feature",properties:{osm_id:"441895722",name:"Perez",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[18.9608079,69.6528734]}},{type:"Feature",properties:{osm_id:"441895729",name:"Solid",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.9567804,69.6501577]}},{type:"Feature",properties:{osm_id:"441895732",name:"Åpenbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.9557288,69.6506906]}}, +{type:"Feature",properties:{osm_id:"441895738",name:"Flyt",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"diet:vegetarian"=>"yes","website"=>"http://www.cafeflyt.no/"'},geometry:{type:"Point",coordinates:[18.9581483,69.6500984]}},{type:"Feature",properties:{osm_id:"442346868",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.2080261,59.7420004]}},{type:"Feature",properties:{osm_id:"443146939",name:"Lapphaugen Turiststasjon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"phone"=>"+47 77 177127"'},geometry:{type:"Point",coordinates:[17.9150007,68.6788976]}},{type:"Feature",properties:{osm_id:"443820651",name:"Mortens Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"norwegian"'},geometry:{type:"Point",coordinates:[10.9525872,59.9855396]}},{type:"Feature",properties:{osm_id:"444087888",name:"Ægir bryggeri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"microbrewery"=>"yes","shop"=>"beer","tourism"=>"attraction"'},geometry:{type:"Point",coordinates:[7.1172812,60.8637375]}},{type:"Feature",properties:{osm_id:"444668366",name:"Ovenpaa",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"floor"=>"2"'},geometry:{type:"Point",coordinates:[5.7312288,58.9706871]}},{type:"Feature",properties:{osm_id:"444668367",name:"Beverly & Sportscafé",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.7310692,58.970927]}},{type:"Feature",properties:{osm_id:"446848531",name:"SiT Kafe MTFS",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"Studentsamskipnaden i Trondheim","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.3933437,63.4201673]}},{type:"Feature",properties:{osm_id:"447564772",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"level"=>"1"'},geometry:{type:"Point",coordinates:[10.9303588,63.4723791]}},{type:"Feature",properties:{osm_id:"448169808", +name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"layer"=>"2","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.756141,59.8613605]}},{type:"Feature",properties:{osm_id:"448170314",name:"To Søstre",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"layer"=>"2","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7555816,59.8613576]}}, +{type:"Feature",properties:{osm_id:"449399612",name:"N.B. Sørensens Damskibsexpedition",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"26","addr:postcode"=>"4006","addr:street"=>"Skagen","cuisine"=>"international","phone"=>"+47 51 84 38 20","website"=>"http://www.herlige-restauranter.no/nbsorensenstavanger/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7304087,58.9716271]}},{type:"Feature",properties:{osm_id:"450537199", +name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7626754,59.9341952]}},{type:"Feature",properties:{osm_id:"452042721",name:"Bjoren Brygge (Brygga)",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.7943802,58.8278848]}},{type:"Feature",properties:{osm_id:"452352736", +name:"Marinaen Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.5453501,58.0095687]}},{type:"Feature",properties:{osm_id:"456856929",name:"Fratelli Ristorante Italiano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Lillestrøm","addr:housenumber"=>"14","addr:postcode"=>"2000","addr:street"=>"Storgata","cuisine"=>"italian","phone"=>"+4764845950","wheelchair"=>"yes","wheelchair:description"=>"No stairs. Large HC WC"'}, +geometry:{type:"Point",coordinates:[11.0476819,59.9559727]}},{type:"Feature",properties:{osm_id:"456856932",name:"Martins",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[11.0479328,59.955778]}},{type:"Feature",properties:{osm_id:"458450705",name:"Gunnarbuda",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[6.2737426,62.6634874]}},{type:"Feature",properties:{osm_id:"459516733",name:"Mikado",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7358027,58.9718437]}},{type:"Feature",properties:{osm_id:"459516751",name:"Amichi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'}, +geometry:{type:"Point",coordinates:[5.7336001,58.9720871]}},{type:"Feature",properties:{osm_id:"459516814",name:"Helt Rått",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sushi","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.7311471,58.9713856]}},{type:"Feature",properties:{osm_id:"459537429",name:"Vasetstølen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[8.9772677,60.9934086]}},{type:"Feature",properties:{osm_id:"460040962",name:"Mogul India",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[5.7385991,58.9714059]}},{type:"Feature",properties:{osm_id:"460040963",name:"Piren Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:null},geometry:{type:"Point",coordinates:[5.7386731,58.9714088]}},{type:"Feature",properties:{osm_id:"460040983",name:"La Piazza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7298201,58.9699237]}},{type:"Feature",properties:{osm_id:"461169407",name:"By The Way",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[10.113363,59.106136]}},{type:"Feature",properties:{osm_id:"461252695",name:"Pizzeria Venezia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4173593,59.2528762]}},{type:"Feature",properties:{osm_id:"461258051",name:"Kverneriet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"american"'}, +geometry:{type:"Point",coordinates:[10.4040195,59.2650609]}},{type:"Feature",properties:{osm_id:"461258191",name:"Esmeralda",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.4057768,59.2660025]}},{type:"Feature",properties:{osm_id:"461258276",name:"Harbour Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.4055197,59.2661822]}},{type:"Feature",properties:{osm_id:"461258480",name:"Havariet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4053566,59.2662875]}},{type:"Feature",properties:{osm_id:"461258572",name:"Lauritz",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point", +coordinates:[10.4061559,59.2667096]}},{type:"Feature",properties:{osm_id:"461259547",name:"Pasta & Pizzanini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.4061376,59.2669498]}},{type:"Feature",properties:{osm_id:"461260157",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"steak_house","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.4064037,59.267441]}},{type:"Feature",properties:{osm_id:"461806404",name:"Conradis",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"fine_dining"'},geometry:{type:"Point",coordinates:[10.4071333,59.2651645]}},{type:"Feature",properties:{osm_id:"461809978",name:"Helmers",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4058716,59.2665857]}},{type:"Feature",properties:{osm_id:"461810223",name:"Peppes pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.4060942,59.2663091]}},{type:"Feature",properties:{osm_id:"461810244",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.4069701,59.2652567]}},{type:"Feature",properties:{osm_id:"461810271",name:"Måken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"fine_dining","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4041206,59.2671998]}},{type:"Feature",properties:{osm_id:"461810461", +name:"Badsha",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4084207,59.2659716]}},{type:"Feature",properties:{osm_id:"461811187",name:"Big Ben",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.4086693,59.2676951]}},{type:"Feature",properties:{osm_id:"461811205",name:"Black & White", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.4089353,59.2688355]}},{type:"Feature",properties:{osm_id:"461811305",name:"Golden China",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.4094164,59.2702481]}},{type:"Feature",properties:{osm_id:"462221106", +name:"Moringen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.768222,58.4519493]}},{type:"Feature",properties:{osm_id:"465247731",name:"Telegrafen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.9981108,60.1911185]}},{type:"Feature",properties:{osm_id:"470664908",name:"Peppes Pizza",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.5208618,59.8870805]}},{type:"Feature",properties:{osm_id:"470664933",name:"Sjøengen House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.5053487,59.8795638]}},{type:"Feature",properties:{osm_id:"472285503",name:"Louis",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4064295,59.2662962]}},{type:"Feature",properties:{osm_id:"472287496",name:"Mytteriet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.4063608,59.2664673]}},{type:"Feature",properties:{osm_id:"473699152",name:"Mamma Mia Pizzeria",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.286593,60.4387773]}},{type:"Feature",properties:{osm_id:"475858400",name:"Milepelen vertshus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"level"=>"0","tourism"=>"guest_house"'},geometry:{type:"Point",coordinates:[11.5405179,60.3916712]}},{type:"Feature",properties:{osm_id:"475858403", +name:"Kafeteria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.16663,60.30209]}},{type:"Feature",properties:{osm_id:"477929189",name:"Spiralen Cafe og Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2011703,59.7527608]}},{type:"Feature",properties:{osm_id:"481041937", +name:"Farsund Resort",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"chalet;hotel"'},geometry:{type:"Point",coordinates:[6.9602269,58.0838612]}},{type:"Feature",properties:{osm_id:"481270132",name:"Kebab House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9348277,59.2134096]}},{type:"Feature",properties:{osm_id:"482187413", +name:"Bakgården pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.9412734,60.8840818]}},{type:"Feature",properties:{osm_id:"482376768",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6441655,59.9625053]}},{type:"Feature",properties:{osm_id:"482992367",name:"Råde Vertshus", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.8697054,59.3531406]}},{type:"Feature",properties:{osm_id:"486095485",name:"Holmenkollen Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO"'},geometry:{type:"Point",coordinates:[10.6669601,59.9605296]}},{type:"Feature",properties:{osm_id:"487130296", +name:"Goggen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.2053768,59.7442179]}},{type:"Feature",properties:{osm_id:"487130314",name:"Jonas B Gundersen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2055417,59.7444644]}},{type:"Feature",properties:{osm_id:"487843789",name:"Kaktus", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6367703,59.9187768]}},{type:"Feature",properties:{osm_id:"489915813",name:"Tysvær Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.4449701,59.4206919]}},{type:"Feature",properties:{osm_id:"490186539",name:"Asiakokken",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.6950186,60.7933513]}},{type:"Feature",properties:{osm_id:"490186548",name:"Big Horn Steak House Gjøvik",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"steak_house","opening_hours"=>"Mo-Th 17:00-23:00; Fr-Sa 16:00-23:00; Su 15:00-21:00","operator"=>"Big Horn Steak House","phone"=>"+47 61130840"'}, +geometry:{type:"Point",coordinates:[10.6940706,60.7945438]}},{type:"Feature",properties:{osm_id:"491058154",name:"Neset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.801237,58.6882637]}},{type:"Feature",properties:{osm_id:"492691667",name:"Pizzabakeren Ålgård",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[5.8623778,58.767125]}},{type:"Feature",properties:{osm_id:"492733012",name:"Lonestar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.8369882,58.7799176]}},{type:"Feature",properties:{osm_id:"493344052",name:"Lizzis pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.2038146,59.744499]}},{type:"Feature",properties:{osm_id:"493344053",name:"Pavarotti",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[10.2074367,59.7437249]}},{type:"Feature",properties:{osm_id:"493344054",name:"pigen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[10.205454,59.7443477]}},{type:"Feature",properties:{osm_id:"493344055",name:"Z",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2052995,59.7440882]}},{type:"Feature",properties:{osm_id:"493344056",name:"Picasso",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.20881,59.7424794]}},{type:"Feature",properties:{osm_id:"493634083",name:"Borgerstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.3571026,60.245089]}},{type:"Feature",properties:{osm_id:"498436722",name:"Orion Pizza og Grill",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[11.4955809,64.0180152]}},{type:"Feature",properties:{osm_id:"498449789",name:"Fergekroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.9825179,69.6460572]}},{type:"Feature",properties:{osm_id:"503690140",name:"Fellini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Fr 09:00-17:00; Th 09:00-19:00; Sa 09:30-15:00","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.6915583,60.7956342]}},{type:"Feature",properties:{osm_id:"507122713",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.0132281,63.4602236]}},{type:"Feature",properties:{osm_id:"509392442",name:"Hong Kong House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.4846689,59.418112]}},{type:"Feature",properties:{osm_id:"511227363",name:"Kafé Koselig",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Kyrksæterøra","addr:housenumber"=>"1","addr:postcode"=>"7200","addr:street"=>"Industriveien","cuisine"=>"regional","website"=>"http://www.kafekoselig.no/"'},geometry:{type:"Point",coordinates:[9.0846235,63.2933576]}},{type:"Feature",properties:{osm_id:"513565566",name:"Egon", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[18.9534599,69.6485119]}},{type:"Feature",properties:{osm_id:"513808543",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.2950213,61.7690818]}},{type:"Feature",properties:{osm_id:"515144237",name:"Sporet",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.0318668,59.0501223]}},{type:"Feature",properties:{osm_id:"515156615",name:"Korvetten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.7310989,58.9699022]}},{type:"Feature",properties:{osm_id:"515156617",name:"Vannari",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7315749,58.9709439]}},{type:"Feature",properties:{osm_id:"515156634",name:"Munken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.7324934,58.9707259]}},{type:"Feature",properties:{osm_id:"517397932",name:"Alexander pub",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7303421,58.9685256]}},{type:"Feature",properties:{osm_id:"527473090",name:"Resturant Alanya",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"turkish"'},geometry:{type:"Point",coordinates:[5.7355386,58.9694058]}},{type:"Feature",properties:{osm_id:"527992515",name:"Fjordkroa",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[7.9766588,63.0110865]}},{type:"Feature",properties:{osm_id:"530713898",name:"Cafe de France",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"french"'},geometry:{type:"Point",coordinates:[5.726646,58.9677188]}},{type:"Feature",properties:{osm_id:"530950126",name:"Graffi Grill og Bar", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"12","addr:postcode"=>"7010","addr:street"=>"Thomas Angells gate","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.3988625,63.4328257]}},{type:"Feature",properties:{osm_id:"532099957",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"ISS Catering AS"'},geometry:{type:"Point", +coordinates:[10.4096532,63.4107607]}},{type:"Feature",properties:{osm_id:"533142994",name:"Egon Tårnet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4319291,63.4223703]}},{type:"Feature",properties:{osm_id:"534734497",name:"Vestheim",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[6.6173906,58.1153553]}},{type:"Feature",properties:{osm_id:"534798026",name:"SiT Kafe Tyholt",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"Studentsamskipnaden i Trondheim"'},geometry:{type:"Point",coordinates:[10.4362094,63.4228701]}},{type:"Feature",properties:{osm_id:"535187694",name:"SiT Kafe Øya",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"level"=>"1","operator"=>"Studentsamskipnaden i Trondheim","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.393403,63.42126]}},{type:"Feature",properties:{osm_id:"536763498",name:"Tempe cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.3974647,63.4072965]}},{type:"Feature",properties:{osm_id:"538012894",name:"Hangursrestauranten",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"building"=>"yes"'},geometry:{type:"Point",coordinates:[6.4008724,60.6386183]}},{type:"Feature",properties:{osm_id:"538012978",name:"Storastovo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"building"=>"yes"'},geometry:{type:"Point",coordinates:[6.3927685,60.6568454]}},{type:"Feature",properties:{osm_id:"539397178",name:"Kantine S P Andersensv 5", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"level"=>"3","operator"=>"ISS Catering AS"'},geometry:{type:"Point",coordinates:[10.406614,63.4090647]}},{type:"Feature",properties:{osm_id:"541072343",name:"Kantine Materialteknologi 1",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"level"=>"3","operator"=>"ISS Catering AS"'},geometry:{type:"Point",coordinates:[10.4099995, +63.4164944]}},{type:"Feature",properties:{osm_id:"541075524",name:"Kantine Materialteknologi 2",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"level"=>"4","operator"=>"ISS Catering AS"'},geometry:{type:"Point",coordinates:[10.4062803,63.4173139]}},{type:"Feature",properties:{osm_id:"543381028",name:"SiT Kafe Moholt",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"Studentsamskipnaden i Trondheim"'}, +geometry:{type:"Point",coordinates:[10.4344743,63.4137995]}},{type:"Feature",properties:{osm_id:"543386017",name:"SiT Kafe DMMH",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"Studentsamskipnaden i Trondheim"'},geometry:{type:"Point",coordinates:[10.4499361,63.4392132]}},{type:"Feature",properties:{osm_id:"543393782",name:"SiT Kafe Rotvoll",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"operator"=>"Studentsamskipnaden i Trondheim"'},geometry:{type:"Point",coordinates:[10.482559,63.4395509]}},{type:"Feature",properties:{osm_id:"543394443",name:"SiT Kafe Tunga",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"Studentsamskipnaden i Trondheim"'},geometry:{type:"Point",coordinates:[10.4717281,63.4248536]}},{type:"Feature",properties:{osm_id:"544557481",name:"Fagernes Gjestegård", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.2424877,60.9852362]}},{type:"Feature",properties:{osm_id:"544557530",name:"Fagernes Gjestegård",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.2424877,60.9853351]}},{type:"Feature",properties:{osm_id:"544571974",name:"Aroma Restaurant", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[9.2335327,60.9853876]}},{type:"Feature",properties:{osm_id:"546142957",name:"SiT Kafe Kalvskinnet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"Studentsamskipnaden i Trondheim","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.3877101, +63.4284702]}},{type:"Feature",properties:{osm_id:"551459698",name:"Lysbuen kantine",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"level"=>"5","operator"=>"ISS Catering AS"'},geometry:{type:"Point",coordinates:[10.4018429,63.417436]}},{type:"Feature",properties:{osm_id:"551473355",name:"Kromaten kantine",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"level"=>"2","operator"=>"ISS Catering AS"'}, +geometry:{type:"Point",coordinates:[10.407128,63.4164349]}},{type:"Feature",properties:{osm_id:"552248351",name:"Smud",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[18.9556023,69.6505259]}},{type:"Feature",properties:{osm_id:"552248389",name:"Picando Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[19.0193281,69.663838]}},{type:"Feature",properties:{osm_id:"553643694",name:"Internasjonalt hus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"name:en"=>"International house","opening_hours"=>"Sa 12:00-15:00"'},geometry:{type:"Point",coordinates:[5.7496139,58.9433981]}},{type:"Feature",properties:{osm_id:"559488959",name:"Osvald",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.5007862,59.7800581]}},{type:"Feature",properties:{osm_id:"564737949",name:"Dolly Dimples",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.7307625,58.9700599]}},{type:"Feature",properties:{osm_id:"572547165",name:"Fjellheim",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.622528,62.7855983]}},{type:"Feature",properties:{osm_id:"576557075",name:"Lucas",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"opening_hours"=>"Mo-Th 14:00-23:00; Fr-Sa 13:00-24:00; Su 13:00-23:00"'},geometry:{type:"Point",coordinates:[10.3995318,63.4221396]}},{type:"Feature",properties:{osm_id:"576577306", +name:"Emilies - Et spisested",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"fine_dining","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.3912851,63.4290307]}},{type:"Feature",properties:{osm_id:"595645449",name:"Bakeriet Frugård",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:street"=>"Borggata","wheelchair"=>"limited"'},geometry:{type:"Point", +coordinates:[5.5022367,59.781518]}},{type:"Feature",properties:{osm_id:"595645457",name:"Den blå time",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:street"=>"Borggata","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.5023192,59.7816168]}},{type:"Feature",properties:{osm_id:"598203826",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.5820357,59.9613662]}},{type:"Feature",properties:{osm_id:"599812719",name:"Fjellstova",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.477216,59.8389579]}},{type:"Feature",properties:{osm_id:"601410892",name:"Skihytta",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"description"=>"Lunsj, A la carte, Afterski","opening_hours"=>"9:00-18:30"'}, +geometry:{type:"Point",coordinates:[12.194916,61.3028183]}},{type:"Feature",properties:{osm_id:"601410893",name:"Fjellroa Ski Paviljongen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[12.1741792,61.31808]}},{type:"Feature",properties:{osm_id:"603292220",name:"Peking",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.4094314,59.2712585]}},{type:"Feature",properties:{osm_id:"603967166",name:"Valentinos",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.8032145,59.7739327]}},{type:"Feature",properties:{osm_id:"603971362",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.814056,59.765392]}},{type:"Feature",properties:{osm_id:"603972241",name:"EGON",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.8365184,59.7186242]}},{type:"Feature",properties:{osm_id:"603972304",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point", +coordinates:[10.8364713,59.7189793]}},{type:"Feature",properties:{osm_id:"603973559",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7732677,59.7893424]}},{type:"Feature",properties:{osm_id:"613221001",name:"Ostehuset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"Fusion","opening_hours"=>"Mo-Fr 08:00-21:00, Sa 08:00-18:00","takeaway"=>"yes","website"=>"ostehuset.no"'}, +geometry:{type:"Point",coordinates:[5.7344295,58.9704291]}},{type:"Feature",properties:{osm_id:"613378782",name:"St Svithun Hotel",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7321506,58.9520429]}},{type:"Feature",properties:{osm_id:"615209011",name:"Sangam",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7594949,59.9201731]}},{type:"Feature",properties:{osm_id:"615209029",name:"San Leandro Tapas",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"78B","addr:street"=>"Thorvald Meiers Gate","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7595699,59.9191173]}},{type:"Feature",properties:{osm_id:"617179770",name:"Delhi Indisk Restaurant", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"7","addr:street"=>"Sølvberggata","cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[5.7339202,58.9712223]}},{type:"Feature",properties:{osm_id:"618946009",name:"Capri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7555341,59.8598572]}},{type:"Feature", +properties:{osm_id:"619245251",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.1931973,60.7179455]}},{type:"Feature",properties:{osm_id:"624585885",name:"Food Factory",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Bergen","addr:housenumber"=>"555","addr:postcode"=>"5869","addr:street"=>"Flyplassveien","website"=>"http://www.avinor.no/lufthavn/bergen/butikkerogservering/_servering?id=181-144364","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[5.2271882,60.2888072]}},{type:"Feature",properties:{osm_id:"630733186",name:"Dolly Dimple's Grimstad",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","opening_hours"=>"Mo-Th 15:00-22:00;Fr 15:00-22:30;Sa-Su 14:00-22:30"'},geometry:{type:"Point",coordinates:[8.5932569,58.340442]}},{type:"Feature",properties:{osm_id:"637510773",name:"Treffen cafe",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7701314,59.9151408]}},{type:"Feature",properties:{osm_id:"640506920",name:"Den Muntre Matros",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.6415066,63.8710939]}},{type:"Feature",properties:{osm_id:"648894918",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.195416,59.6215488]}},{type:"Feature",properties:{osm_id:"648894920",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.1918004,59.6191723]}},{type:"Feature",properties:{osm_id:"658841477",name:"Jeromes",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"33","addr:postcode"=>"0166","addr:street"=>"St. Olavs gate","cuisine"=>"french","fax"=>"+47 22111711","old_name"=>"Chocolat","phone"=>"+47 22111710","website"=>"http://www.chocolat.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7338036,59.9177885]}},{type:"Feature",properties:{osm_id:"658852873",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"37","addr:postcode"=>"0162","addr:street"=>"Karl Johans gate","email"=>"paleet@egon.no","fax"=>"+47 22422808","opening_hours"=>"Su-Th 10:00-23:30; Fr-Sa 10:00-00:30","operator"=>"Egon","phone"=>"+47 22417790","website"=>"http://www.egon.no/restaurant/egon+karl+johan","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7376815,59.914243]}},{type:"Feature",properties:{osm_id:"661033605",name:"Strømsøe", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.297752,63.7461476]}},{type:"Feature",properties:{osm_id:"663368757",name:"Mandelhuset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.5234268,60.0459068]}},{type:"Feature",properties:{osm_id:"663368785",name:"Mandelhuset",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.523341,60.0456604]}},{type:"Feature",properties:{osm_id:"665215031",name:"Varmestovo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"building"=>"yes","shop"=>"ticket"'},geometry:{type:"Point",coordinates:[6.416304,60.6563105]}},{type:"Feature",properties:{osm_id:"665459759",name:"Lambada", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9556007,59.2034463]}},{type:"Feature",properties:{osm_id:"665479829",name:"Balaklava",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9545439,59.2042125]}},{type:"Feature",properties:{osm_id:"667383132",name:"Cafe Skansen",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7388371,59.9101303]}},{type:"Feature",properties:{osm_id:"667387932",name:"TGI Friday's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","cuisine"=>"american","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7265126, +59.9096399]}},{type:"Feature",properties:{osm_id:"667447333",name:"Fjord",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:street"=>"Kristian Augusts gate","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7378824,59.9167565]}},{type:"Feature",properties:{osm_id:"669403008",name:"Café Odonata",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6218831,59.9004105]}},{type:"Feature",properties:{osm_id:"669865065",name:"Sjøflyhavna",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6331254,59.8937712]}},{type:"Feature",properties:{osm_id:"678879441",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[10.4434702,59.2208574]}},{type:"Feature",properties:{osm_id:"679778165",name:"Skomakeren Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.0290594,59.0519725]}},{type:"Feature",properties:{osm_id:"681304680",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[10.6374665,59.9135679]}},{type:"Feature",properties:{osm_id:"682348373",name:"Klostergården",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6229516,63.5839219]}},{type:"Feature",properties:{osm_id:"688402858",name:"Tønsberg pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.4713193,59.2723612]}},{type:"Feature",properties:{osm_id:"689144633",name:"Jekyl and Hyde",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[11.049859,59.9574839]}},{type:"Feature",properties:{osm_id:"689457855",name:"Tingvold",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[11.1902126,60.7169626]}},{type:"Feature",properties:{osm_id:"693646691",name:"Narvikguten Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[17.4306916,68.438645]}},{type:"Feature",properties:{osm_id:"693646697",name:"Telegrafen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[17.4300913,68.4382092]}},{type:"Feature",properties:{osm_id:"695117800",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","website"=>"http://www.peppes.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3264885,60.3961644]}},{type:"Feature",properties:{osm_id:"695140320",name:"Pingvinen",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"14","addr:postcode"=>"5014","addr:street"=>"Vaskerelven","opening_hours"=>"Mo-Su 14:00-03:00","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.3217318,60.3911799]}},{type:"Feature",properties:{osm_id:"698666703",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.5223421,60.8626556]}},{type:"Feature", +properties:{osm_id:"698812678",name:"Dolly Dimples",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[11.0857661,59.2754264]}},{type:"Feature",properties:{osm_id:"698846885",name:"Pilegrimen Steakhouse",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional","opening_hours"=>"18:30-"'}, +geometry:{type:"Point",coordinates:[12.1558116,61.3225309]}},{type:"Feature",properties:{osm_id:"703392691",name:"China Twang",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6066955,59.2059619]}},{type:"Feature",properties:{osm_id:"703393447",name:"Bar'n",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[9.6108261,59.2075712]}},{type:"Feature",properties:{osm_id:"703393448",name:"Big Horn Steakhouse",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.6103043,59.2085809]}},{type:"Feature",properties:{osm_id:"705477721",name:"Ramton brygge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.5119957,59.7418231]}},{type:"Feature",properties:{osm_id:"706705279",name:"Dolly Dimples",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[11.0476972,59.9518989]}},{type:"Feature",properties:{osm_id:"706705282",name:"Big Horn",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes","wheelchair:description"=>"HC toilets unknown"'}, +geometry:{type:"Point",coordinates:[11.0480656,59.9518465]}},{type:"Feature",properties:{osm_id:"706705285",name:"Mirchi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[11.047492,59.9519639]}},{type:"Feature",properties:{osm_id:"708811598",name:"(China) Fred Restaurant & Café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[10.7794096,59.908649]}},{type:"Feature",properties:{osm_id:"710534966",name:"Storgata Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.047367,59.9543419]}},{type:"Feature",properties:{osm_id:"710534968",name:"Agra",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'}, +geometry:{type:"Point",coordinates:[11.0473707,59.9553436]}},{type:"Feature",properties:{osm_id:"710534969",name:"Pikene på Torvet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.0490492,59.9564628]}},{type:"Feature",properties:{osm_id:"710534970",name:"Ristorante San Marco",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[11.0485928,59.9559554]}},{type:"Feature",properties:{osm_id:"710534972",name:"RegIt",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[11.0478064,59.9554758]}},{type:"Feature",properties:{osm_id:"710534974",name:"Fryd",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[11.0493414,59.9556835]}},{type:"Feature",properties:{osm_id:"710534978",name:"Peppe's Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[11.0483635,59.9569505]}},{type:"Feature",properties:{osm_id:"710534979",name:"Klimt",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[11.0484584,59.957176]}},{type:"Feature",properties:{osm_id:"710534980",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.0486125,59.9574935]}},{type:"Feature",properties:{osm_id:"710534983",name:"Køh Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[11.0482154,59.9574257]}},{type:"Feature",properties:{osm_id:"710534985",name:"Vinmonopolet Lillestrøm",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"shop"=>"alcohol"'},geometry:{type:"Point",coordinates:[11.0485127,59.9578556]}},{type:"Feature",properties:{osm_id:"710551053",name:"China Palace",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[11.0498388,59.9578686]}},{type:"Feature",properties:{osm_id:"710551054",name:"Chi Restaurant & Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[11.0491286,59.9580543]}},{type:"Feature",properties:{osm_id:"716797042",name:"Sakuza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"japanese","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[11.0433063,59.9557874]}},{type:"Feature",properties:{osm_id:"716797044",name:"Pizzabaronen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[11.0444498,59.9556443]}},{type:"Feature",properties:{osm_id:"717464450",name:"Napoli",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9314142,63.4678261]}},{type:"Feature",properties:{osm_id:"724584640",name:"Fjellheisrestauranten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[17.4568735,68.42237510000001]}},{type:"Feature",properties:{osm_id:"726798368",name:"Brødrene Jensen",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.42718,59.5597264]}},{type:"Feature",properties:{osm_id:"726800574",name:"Café Privaten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4256404,59.5595769]}},{type:"Feature",properties:{osm_id:"728666985",name:"Sjøbua Mathus",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.5623084,58.9305253]}},{type:"Feature",properties:{osm_id:"735065085",name:"Lanternen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.2582369,59.1493139]}},{type:"Feature",properties:{osm_id:"735116505",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.2679852,59.4123123]}},{type:"Feature",properties:{osm_id:"735116594",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.2671097,59.4132641]}},{type:"Feature",properties:{osm_id:"736195862",name:"Arctis",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[31.1030766,70.3723218]}},{type:"Feature",properties:{osm_id:"737337283",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","operator"=>"Dolly Dimples"'},geometry:{type:"Point",coordinates:[10.8419055,59.9136538]}},{type:"Feature",properties:{osm_id:"738160585",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"tourism"=>"hotel"'},geometry:{type:"Point",coordinates:[6.2838465,58.323051]}},{type:"Feature",properties:{osm_id:"741308843",name:"Det Akademiske Kvarter",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"loc_name"=>"Kvarteret","website"=>"http://kvarteret.no","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3219793,60.3897286]}},{type:"Feature",properties:{osm_id:"741515377",name:"Shanghai Wok", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Su 13:00-23:00","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[18.9635899,69.65495390000001]}},{type:"Feature",properties:{osm_id:"748743112",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9255407,63.4681865]}},{type:"Feature", +properties:{osm_id:"748743113",name:"China Palace",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9163504,63.4681199]}},{type:"Feature",properties:{osm_id:"748743114",name:"Amore",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9211633,63.4683303]}},{type:"Feature",properties:{osm_id:"755829983", +name:"Bamses",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.9163075,63.4682253]}},{type:"Feature",properties:{osm_id:"759654952",name:"Far East Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","opening_hours"=>"Mo-Th 13:00-22:00; Fr-Sa 13:00-00:00; Su 13:00-22:00"'},geometry:{type:"Point",coordinates:[10.9774577, +59.2326946]}},{type:"Feature",properties:{osm_id:"762833781",name:"Furulund",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.6961326,59.2288805]}},{type:"Feature",properties:{osm_id:"765254860",name:"Walaker Hotell",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"hotel"'},geometry:{type:"Point",coordinates:[7.2479014, +61.3020136]}},{type:"Feature",properties:{osm_id:"766104476",name:"Gildetun",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[21.6047672,69.8983507]}},{type:"Feature",properties:{osm_id:"768237659",name:"Oslo motorbåtforening",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6739503, +59.9199739]}},{type:"Feature",properties:{osm_id:"770330542",name:"Champs Sportbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.7317564,58.9711806]}},{type:"Feature",properties:{osm_id:"772327790",name:"Golden Crown",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.4834928, +59.4173132]}},{type:"Feature",properties:{osm_id:"772616818",name:"Ringkollstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.3880061,60.1664295]}},{type:"Feature",properties:{osm_id:"773549407",name:"Cafè Rampa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7946164,63.411571]}}, +{type:"Feature",properties:{osm_id:"775752350",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9346143,59.2132764]}},{type:"Feature",properties:{osm_id:"775752351",name:"Chang Cheng",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.93497, +59.2133358]}},{type:"Feature",properties:{osm_id:"778685817",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"shop"=>"ticket"'},geometry:{type:"Point",coordinates:[8.363843,61.6649154]}},{type:"Feature",properties:{osm_id:"780968024",name:"Viva Napoli Pizzeria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.3644529, +63.3781828]}},{type:"Feature",properties:{osm_id:"783809095",name:"Vesterås gard",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.2162428,62.1008266]}},{type:"Feature",properties:{osm_id:"794611871",name:"Pizzanini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.936847,59.2117345]}}, +{type:"Feature",properties:{osm_id:"794612176",name:"Oscar Live",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.9369135,59.2115982]}},{type:"Feature",properties:{osm_id:"794630340",name:"Dragen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.9385716,59.211968]}},{type:"Feature",properties:{osm_id:"794632512", +name:"Dampen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.9382305,59.211072]}},{type:"Feature",properties:{osm_id:"796482273",name:"Vollan Gjestestue",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"hotel"'},geometry:{type:"Point",coordinates:[19.5598523,69.21824070000001]}},{type:"Feature",properties:{osm_id:"796694107", +name:"Enga bar & café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"5 B","addr:postcode"=>"0657","addr:street"=>"Vålerenggata"'},geometry:{type:"Point",coordinates:[10.7837867,59.9073795]}},{type:"Feature",properties:{osm_id:"801233419",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.934556,59.2138173]}}, +{type:"Feature",properties:{osm_id:"803418931",name:"Rondablikk Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.7230309,61.7522993]}},{type:"Feature",properties:{osm_id:"807055719",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[16.8592864,68.3385264]}},{type:"Feature", +properties:{osm_id:"808488675",name:"Rogers Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"phone"=>"+(47) 75774677","tourism"=>"motel"'},geometry:{type:"Point",coordinates:[16.3783935,68.0970953]}},{type:"Feature",properties:{osm_id:"811525258",name:"Cactus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Fredrikstad","addr:housenumber"=>"21","addr:postcode"=>"1606","addr:street"=>"Nygaardsgata","cuisine"=>"mexican","opening_hours"=>"Mo-Th 11:00-23:00; Fr-Sa 11:00-00:00; Su 13:00-23:00"'}, +geometry:{type:"Point",coordinates:[10.9393544,59.2105935]}},{type:"Feature",properties:{osm_id:"812456327",name:"Pizzabakeren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[6.0025186,58.4611481]}},{type:"Feature",properties:{osm_id:"812456357",name:"Kosen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[5.9976392,58.478496]}},{type:"Feature",properties:{osm_id:"813308316",name:"Kjenndalstova",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.0105866,61.779499]}},{type:"Feature",properties:{osm_id:"816420527",name:"Tranen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"70","addr:postcode"=>"0173","addr:street"=>"Waldemar Thranes gate","email"=>"restaurant@tranen.no","opening_hours"=>"Mo-Fr 07:00-22:00; Sa 09:00-22:00; Su 11:00-20:00","operator"=>"Åpent Bakeri","website"=>"http://www.tranen.no","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.7491617,59.92813]}},{type:"Feature",properties:{osm_id:"816420559",name:"Gutta fra Calcutta",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"65","addr:postcode"=>"0173","addr:street"=>"Waldemar Thranes gate","cuisine"=>"indian","website"=>"http://www.guttafracalcutta.no/"'},geometry:{type:"Point",coordinates:[10.749352,59.9277891]}},{type:"Feature",properties:{osm_id:"816424311", +name:"Colonel Mustard",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:street"=>"Darres gt. 2","cuisine"=>"international","website"=>"http://www.colonelmustard.no/"'},geometry:{type:"Point",coordinates:[10.7513966,59.9278275]}},{type:"Feature",properties:{osm_id:"816430031",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[10.7498689,59.9284043]}},{type:"Feature",properties:{osm_id:"816430036",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7455773,59.9260387]}},{type:"Feature",properties:{osm_id:"816640447",name:"Handeland Gard",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.handelandgard.no"'}, +geometry:{type:"Point",coordinates:[5.8144371,59.8162728]}},{type:"Feature",properties:{osm_id:"818650294",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4072357,59.0582665]}},{type:"Feature",properties:{osm_id:"819779904",name:"Milano Ristorante",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[11.564664,60.8799365]}},{type:"Feature",properties:{osm_id:"821064187",name:"Den Gode Nabo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.8442087,62.3437101]}},{type:"Feature",properties:{osm_id:"821677472",name:"China House Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[5.5016191,59.777679]}},{type:"Feature",properties:{osm_id:"824796131",name:"Klokkergården",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[13.0567278,66.6664482]}},{type:"Feature",properties:{osm_id:"824801139",name:"Steglet China Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[9.6378528,59.6478153]}},{type:"Feature",properties:{osm_id:"825192430",name:"Terrassen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[7.8045011,58.5870869]}},{type:"Feature",properties:{osm_id:"825242901",name:"Cacadou",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7532774,59.9168645]}},{type:"Feature",properties:{osm_id:"826827543",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"steak_house","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.268386,59.4119897]}},{type:"Feature",properties:{osm_id:"826827549",name:"Lord Nelson",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.2698848,59.4127267]}},{type:"Feature",properties:{osm_id:"826827552",name:"Pizzabakeren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.2691862,59.414836]}},{type:"Feature",properties:{osm_id:"826827563",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.2680641,59.4140478]}},{type:"Feature",properties:{osm_id:"826827565",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.2672471,59.413379]}},{type:"Feature",properties:{osm_id:"826827567",name:"Peppes pizza",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.2672273,59.412825]}},{type:"Feature",properties:{osm_id:"826827570",name:"Bestastuå",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.269019,59.4121644]}},{type:"Feature",properties:{osm_id:"826827573", +name:"Lothes mat og vinhus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.2691048,59.4119569]}},{type:"Feature",properties:{osm_id:"826833543",name:"Mega pizza Away",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"kabab"'},geometry:{type:"Point",coordinates:[5.2673381,59.4141632]}},{type:"Feature", +properties:{osm_id:"827286673",name:"Hylla Cafe og Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.8139709,59.8968853]}},{type:"Feature",properties:{osm_id:"829617325",name:"Falsen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:street"=>"Kongens gate","alt_name"=>"Falsen restaurant & pizzeria","email"=>"post@restaurantfalsen.no","phone"=>"+47 22335110","website"=>"http://www.restaurantfalsen.no/"'}, +geometry:{type:"Point",coordinates:[10.7413572,59.9093848]}},{type:"Feature",properties:{osm_id:"829867461",name:"Uglebo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7226895,59.9414799]}},{type:"Feature",properties:{osm_id:"829867463",name:"Integrerbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[10.7233923,59.9401176]}},{type:"Feature",properties:{osm_id:"829867465",name:"U1",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7249748,59.9410177]}},{type:"Feature",properties:{osm_id:"833428558",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[11.0747098,60.793577]}},{type:"Feature",properties:{osm_id:"833428883",name:"Leonardo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.0734491,60.793605]}},{type:"Feature",properties:{osm_id:"833429004",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[11.0691051,60.7950634]}},{type:"Feature",properties:{osm_id:"833914230",name:"Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.9287388,62.7217432]}},{type:"Feature",properties:{osm_id:"836601515",name:"Irish Viking",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.theirishviking.no/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[5.267658,59.4138273]}},{type:"Feature",properties:{osm_id:"836605540",name:"Munkekjelleren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.2682212,59.4125362]}},{type:"Feature",properties:{osm_id:"838574104",name:"Hereford Steakhouse",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.757721,59.9234947]}},{type:"Feature",properties:{osm_id:"840542882",name:"Egon Solsiden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4116437,63.4347579]}},{type:"Feature",properties:{osm_id:"840609244",name:"Frognerseteren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[10.6775192,59.9776504]}},{type:"Feature",properties:{osm_id:"840875183",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.0916295,61.3361026]}},{type:"Feature",properties:{osm_id:"844501517",name:"Ta Det Piano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[6.1589936,62.4717922]}},{type:"Feature",properties:{osm_id:"844503790",name:"Teaterfabrikken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.1461297,62.4733442]}},{type:"Feature",properties:{osm_id:"844503816",name:"Vega",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[6.1522988,62.4706764]}},{type:"Feature",properties:{osm_id:"844503848",name:"Hoffman",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[6.1563865,62.473374]}},{type:"Feature",properties:{osm_id:"844503852",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[6.1566655, +62.4739987]}},{type:"Feature",properties:{osm_id:"844505094",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.1582457,62.4728542]}},{type:"Feature",properties:{osm_id:"845598934",name:"Olsen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.8182649, +59.9075609]}},{type:"Feature",properties:{osm_id:"847941751",name:"Garaløa Selskapslokale",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.3038433,62.4825235]}},{type:"Feature",properties:{osm_id:"848213024",name:"China House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Molde","addr:housenumber"=>"10","addr:postcode"=>"6415","addr:street"=>"Strandgata","cuisine"=>"chinese"'}, +geometry:{type:"Point",coordinates:[7.16695,62.73744]}},{type:"Feature",properties:{osm_id:"848224538",name:"Hos Gyda",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Molde","addr:housenumber"=>"1","addr:postcode"=>"6413","addr:street"=>"Romsdalsgata","cuisine"=>"pizza","opening_hours"=>"Mo-Tu 11:00-21:00;We-Fr 11:00-22:00;Sa 12:00-22:00;Su 14:00-22:00"'},geometry:{type:"Point",coordinates:[7.16288,62.73791]}},{type:"Feature", +properties:{osm_id:"848962407",name:"V/E6",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6223327,60.9576949]}},{type:"Feature",properties:{osm_id:"849029048",name:"Dalen kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.0101623,59.4446843]}},{type:"Feature",properties:{osm_id:"849438813", +name:"Villa Malla",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6172888,59.5711276]}},{type:"Feature",properties:{osm_id:"849847300",name:"Frognerstranda kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7055635,59.9102932]}},{type:"Feature",properties:{osm_id:"849881804", +name:"Peppes pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[8.9076365,61.2485943]}},{type:"Feature",properties:{osm_id:"850819193",name:"Bryggekanten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.4580488,58.0280139]}},{type:"Feature",properties:{osm_id:"850819595", +name:"Bryggekanten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.4578342,58.0280196]}},{type:"Feature",properties:{osm_id:"850825794",name:"Mandals Puben",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.4524376,58.0270254]}},{type:"Feature",properties:{osm_id:"850826450",name:"KROEN",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.4519548,58.0267385]}},{type:"Feature",properties:{osm_id:"850838796",name:"Marna Kafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.457759,58.0279172]}},{type:"Feature",properties:{osm_id:"850839654",name:"Provianten",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.45733,58.0278165]}},{type:"Feature",properties:{osm_id:"850840900",name:"Marna Kafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.457566,58.0279159]}},{type:"Feature",properties:{osm_id:"850849520",name:"Jonas B. Gundersen",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.4553666,58.0278804]}},{type:"Feature",properties:{osm_id:"850850730",name:"Hr. Redaktør",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.455034,58.0277497]}},{type:"Feature",properties:{osm_id:"851519496",name:"Den Grøne Kafé",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Fr-Sa 12:00-20:00; Su 12:00-18:00","phone"=>"+4756526187","website"=>"http://www.fjordcafe.no"'},geometry:{type:"Point",coordinates:[6.9187181,60.5674336]}},{type:"Feature",properties:{osm_id:"853477780",name:"Mr Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7666361,59.9332193]}},{type:"Feature",properties:{osm_id:"853486526", +name:"Shamrock",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7653578,59.9273975]}},{type:"Feature",properties:{osm_id:"853853537",name:"Fiskekrogen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[14.2033889,68.1537191]}},{type:"Feature",properties:{osm_id:"854429767", +name:"Sjøboden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.4518475,58.0257698]}},{type:"Feature",properties:{osm_id:"854462004",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","website"=>"http://www.dolly.no/"'},geometry:{type:"Point",coordinates:[10.7645484,59.9349487]}},{type:"Feature", +properties:{osm_id:"855364280",name:"Grosch",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7400892,59.9086141]}},{type:"Feature",properties:{osm_id:"855528850",name:"Bambus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"asian"'},geometry:{type:"Point",coordinates:[10.5275793,59.6814284]}},{type:"Feature", +properties:{osm_id:"856561769",name:"Arresten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"food"=>"yes","opening_hours"=>"Mo-Th 11:00-01:00; Fr-Sa 11:00-02:00"'},geometry:{type:"Point",coordinates:[16.1262076,69.3210311]}},{type:"Feature",properties:{osm_id:"860965941",name:"Norrøna Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[6.1268777, +62.2001581]}},{type:"Feature",properties:{osm_id:"861714101",name:"China House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.8011349,59.8097161]}},{type:"Feature",properties:{osm_id:"864703240",name:"Bergmannskroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional","opening_hours"=>"Mo-Sa 10:00-19:00; Su 13:00-19:00"'}, +geometry:{type:"Point",coordinates:[9.7048356,63.1246614]}},{type:"Feature",properties:{osm_id:"864915974",name:"Rust",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"22","addr:postcode"=>"0167","addr:street"=>"Hegdehaugsveien","opening_hours"=>"Mo-Sa 11:00-01:00; Su 12:00-24:00","phone"=>"+47 23626505","website"=>"http://www.rustoslo.com/","wheelchair"=>"no"'},geometry:{type:"Point", +coordinates:[10.7296952,59.9203288]}},{type:"Feature",properties:{osm_id:"865263903",name:"Mona Lisa Ristorante",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"10","addr:postcode"=>"0159","addr:street"=>"Grensen","cuisine"=>"italian","phone"=>"22 34 02 30","website"=>"http://www.monalisahuset.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7434521,59.9136225]}}, +{type:"Feature",properties:{osm_id:"866255594",name:"Karoline pub & spiseri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7970762,59.9141244]}},{type:"Feature",properties:{osm_id:"868344617",name:"Buggen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7954293, +59.6654595]}},{type:"Feature",properties:{osm_id:"868352408",name:"Ikke bare Texas",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7913111,59.6647095]}},{type:"Feature",properties:{osm_id:"869302065",name:"Smia Galleri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"19","addr:street"=>"Opplandgata","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.7855207,59.9064528]}},{type:"Feature",properties:{osm_id:"869305248",name:"Vålerenga Vertshus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"1","addr:street"=>"Hedmarksgata"'},geometry:{type:"Point",coordinates:[10.7895095,59.909546]}},{type:"Feature",properties:{osm_id:"870911270",name:"Saluhallen Svinesundbroen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[11.2726082,59.0951872]}},{type:"Feature",properties:{osm_id:"871895999",name:"Lincoln Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7637241,59.9334897]}},{type:"Feature",properties:{osm_id:"875596880",name:"Brygga",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.040481,58.9992412]}},{type:"Feature",properties:{osm_id:"875597051",name:"Tordenskiold Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.0380222,58.9976531]}},{type:"Feature",properties:{osm_id:"875597061",name:"Kaikanten",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.041589,58.9985925]}},{type:"Feature",properties:{osm_id:"875597067",name:"Skipperstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.0387109,58.9981524]}},{type:"Feature",properties:{osm_id:"875597113",name:"Det gule galleriet",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.0382295,58.9978296]}},{type:"Feature",properties:{osm_id:"875597367",name:"La Bodega",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.0383204,58.9984584]}},{type:"Feature",properties:{osm_id:"878649745",name:"Peppes Pizza - Gjøvik",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"6","opening_hours"=>"Mo-Sa 11:00-23:00; Su 13:00-23:00","operator"=>"Peppes Pizza"'},geometry:{type:"Point",coordinates:[10.6898115,60.7970388]}},{type:"Feature",properties:{osm_id:"879653642",name:"Agra Indisk Restaurant & Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7270314,59.910653]}},{type:"Feature",properties:{osm_id:"884204186", +name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.1707148,58.9394281]}},{type:"Feature",properties:{osm_id:"886058321",name:"Dampen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.5060045,63.2261188]}},{type:"Feature",properties:{osm_id:"889307434",name:"Blå Lotus",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:street"=>"Brattørgata","cuisine"=>"thai"'},geometry:{type:"Point",coordinates:[10.4019385,63.4338795]}},{type:"Feature",properties:{osm_id:"889307464",name:"Restaurant Frida",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:housenumber"=>"15","addr:street"=>"Fjordgata","contact:phone"=>"+47 73535007","contact:website"=>"http://www.restaurantfrida.no/","cuisine"=>"mexican","opening_hours"=>"Mo-Sa 16:00-23:00; Su 16:00-22:00"'}, +geometry:{type:"Point",coordinates:[10.400778,63.4346282]}},{type:"Feature",properties:{osm_id:"889307512",name:"Grønn pepper",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:street"=>"Fjordgata","cuisine"=>"mexican","opening_hours"=>"Mo 16:00-22:00; Tu-Sa 16:00-23:00; Su 15:00-22:00","website"=>"http://www.gronnpepper.no/","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.4022068, +63.4346233]}},{type:"Feature",properties:{osm_id:"889307543",name:"Jadab",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:street"=>"Brattørgata","cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.4012253,63.4339297]}},{type:"Feature",properties:{osm_id:"893397017",name:"Kieglekroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:street"=>"Holstveita"'},geometry:{type:"Point",coordinates:[10.3909313,63.4313079]}},{type:"Feature",properties:{osm_id:"895356663",name:"Daglevara Kafeteria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.5191515,61.8069541]}},{type:"Feature",properties:{osm_id:"895425434",name:"Hauen Kro",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[6.0010338,58.4512218]}},{type:"Feature",properties:{osm_id:"896835664",name:"OSLOKMEKANISKEVERKSTED",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"34","addr:street"=>"Tøyenbekken","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7621472,59.9113818]}},{type:"Feature", +properties:{osm_id:"903769353",name:"Mjøndalen Gjestegiveri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.0093807,59.7509048]}},{type:"Feature",properties:{osm_id:"913303504",name:"Nidelv Brygge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.7286323,58.4273313]}},{type:"Feature", +properties:{osm_id:"920857600",name:"Lura Turistheim",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"motel"'},geometry:{type:"Point",coordinates:[5.7361028,58.8724706]}},{type:"Feature",properties:{osm_id:"926406301",name:"Fjordkroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[6.8521603, +61.1824401]}},{type:"Feature",properties:{osm_id:"928648466",name:"Jensens Biffhus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7263774,59.9103158]}},{type:"Feature",properties:{osm_id:"930426909",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"entrance"=>"main"'},geometry:{type:"Point", +coordinates:[10.5164177,59.8704819]}},{type:"Feature",properties:{osm_id:"939102160",name:"Café Serenad",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"1","addr:postcode"=>"0175","addr:street"=>"Darres gate","cuisine"=>"turkish"'},geometry:{type:"Point",coordinates:[10.7512163,59.9275875]}},{type:"Feature",properties:{osm_id:"939712550",name:"Elvelangs",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.9995494,60.1902304]}},{type:"Feature",properties:{osm_id:"939730747",name:"Kelebek",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.9997425,60.1875209]}},{type:"Feature",properties:{osm_id:"939731380",name:"Milano",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[12.0034332,60.1869234]}},{type:"Feature",properties:{osm_id:"939753721",name:"Taverna Kongsvinger",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.9936914,60.1934944]}},{type:"Feature",properties:{osm_id:"940227001",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"steak_house","website"=>"http://www.bighorn.no/"'},geometry:{type:"Point",coordinates:[9.6469729,59.6670006]}},{type:"Feature",properties:{osm_id:"940227128",name:"Dolly Dimple's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","website"=>"http://www.dolly.no/"'},geometry:{type:"Point",coordinates:[9.6473689,59.6669288]}},{type:"Feature", +properties:{osm_id:"942521179",name:"Schouskjelleren mikrobryggeri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"microbrewery"=>"yes","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.760351,59.918368]}},{type:"Feature",properties:{osm_id:"944180012",name:"Li Cafe og Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9300495, +60.0070096]}},{type:"Feature",properties:{osm_id:"945474388",name:"Oasen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.2102495,59.5670824]}},{type:"Feature",properties:{osm_id:"946934963",name:"Park Lounge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO"'},geometry:{type:"Point",coordinates:[10.7511109, +59.9274036]}},{type:"Feature",properties:{osm_id:"947956217",name:"Heistadpuben",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.6880959,59.0771646]}},{type:"Feature",properties:{osm_id:"956343604",name:"Eld",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"fine_dining","website"=>"http://www.eldrestaurant.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.3916342,63.431266]}},{type:"Feature",properties:{osm_id:"956343606",name:"Pair-A-Dice",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"burger","website"=>"http://www.pair-a-dice.no/"'},geometry:{type:"Point",coordinates:[10.3920402,63.430293]}},{type:"Feature",properties:{osm_id:"956343617",name:"Ristorantino Italiano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:housenumber"=>"4","addr:postcode"=>"7011","addr:street"=>"Nordre gate","cuisine"=>"italian","opening_hours"=>"Mo-Sa 14:00-23:00;Su 14:00-22:00","phone"=>"73 52 62 42","website"=>"http://ristorantino.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.3974304,63.4309837]}},{type:"Feature",properties:{osm_id:"956343647",name:"Peking House",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.3999482,63.4336327]}},{type:"Feature",properties:{osm_id:"956343649",name:"To Rom og Kjøkken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.398745,63.4338253]}},{type:"Feature",properties:{osm_id:"973793388",name:"Sult Lille Herbern",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.sult.no/lilleherbern/"'},geometry:{type:"Point",coordinates:[10.6936084,59.898598]}},{type:"Feature",properties:{osm_id:"973804256",name:"Dronningen Restaurant og Selskapslokale",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.698297,59.9083031]}},{type:"Feature",properties:{osm_id:"973811158", +name:"Bakkekroen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6827938,59.9379168]}},{type:"Feature",properties:{osm_id:"973843495",name:"Bølgen & Moi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"26","addr:postcode"=>"0260","addr:street"=>"Løvenskiolds gate","email"=>"briskeby@bolgenogmoi.no ","fax"=>"+47 24115354","opening_hours"=>"Mo-We 11:00-01:00; Th-Fr 07:30-01:00; Sa 09:00-01:00; Su 11:00-17:00","phone"=>"+47 24115353","website"=>"http://www.bolgenogmoi.no"'}, +geometry:{type:"Point",coordinates:[10.7154471,59.9223299]}},{type:"Feature",properties:{osm_id:"973843497",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7272434,59.9218862]}},{type:"Feature",properties:{osm_id:"973858666",name:"Horgan's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"alt_name"=>"Horgan\'s American Bar & Restaurant","cuisine"=>"american","email"=>" post@horgans.no","opening_hours"=>"Mo-We 11:00-24:00; Th-Fr 11:00-03:30; Sa 13:00-03:30; Su 14:00-21:00","phone"=>"+ 47 22608787","website"=>"http://www.horgans.no/"'}, +geometry:{type:"Point",coordinates:[10.7274627,59.9210318]}},{type:"Feature",properties:{osm_id:"973859853",name:"Brasserie Blanche",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.blanche.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7258703,59.9230606]}},{type:"Feature",properties:{osm_id:"973863775",name:"Gandhi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"36","addr:postcode"=>"0367","addr:street"=>"Majorstuveien","cuisine"=>"indian","fax"=>"+47 22604300","level"=>"-1","opening_hours"=>"Mo-Sa 15:00-23:00; Su 14:00-22:00","phone"=>"+47 22604300","website"=>"http://gandhi.no","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7151639,59.9279113]}},{type:"Feature",properties:{osm_id:"973879088",name:"Jewel of India",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"81","addr:postcode"=>"0256","addr:street"=>"Oscars gate","cuisine"=>"indian","email"=>"post@jewelofindia.no","fax"=>"+47 22553930","opening_hours"=>"Mo-Sa 15:00-23:00; Su 14:00-22:00","phone"=>"+47 22553929","website"=>"http://www.jewelofindia.no","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7167953,59.9158715]}},{type:"Feature",properties:{osm_id:"973881284",name:"Pizza de Mimmo", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.pizzadamimmo.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7164945,59.9161994]}},{type:"Feature",properties:{osm_id:"973883768",name:"Pascal",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"36","addr:postcode"=>"0255","addr:street"=>"Henrik Ibsens gate","email"=>"henrikibsen@pascal.no","opening_hours"=>"Mo-Fr 8:00-22:30; Sa 10:00-22:30; Su 12:00-17:00","phone"=>"+47 22550020","shop"=>"confectionery","website"=>"http://pascal.no/serveringssteder/henrik-ibsens-gate/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.725796,59.9150945]}},{type:"Feature",properties:{osm_id:"973899210",name:"Revierhavnen Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"description"=>"Access by boat only","website"=>"http://www.revierhavnenkro.com/"'},geometry:{type:"Point",coordinates:[10.7351102,59.8990847]}},{type:"Feature",properties:{osm_id:"974598761",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7925729,59.9308882]}},{type:"Feature",properties:{osm_id:"977584923",name:"Restaurant Schrøder",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"8","addr:postcode"=>"0171","addr:street"=>"Waldemar Thranes gate","opening_hours"=>"Mo-Su 12:00-00:30; Dec 25 off; Dec 26 off","phone"=>"+47 22605183","website"=>"http://restaurant-schroder.no/"'}, +geometry:{type:"Point",coordinates:[10.7393978,59.9234171]}},{type:"Feature",properties:{osm_id:"977584927",name:"Sofies mat- og vinhus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7358401,59.9226496]}},{type:"Feature",properties:{osm_id:"992757272",name:"Prima Fila",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:housenumber"=>"5","addr:postcode"=>"0160","addr:street"=>"Fridtjof Nansens plass","cuisine"=>"italian","email"=>"primafila@online.no","phone"=>"+47 22422750","website"=>"http://www.primafila.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7345443,59.9131856]}},{type:"Feature",properties:{osm_id:"992764239",name:"Borggården",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"5","addr:postcode"=>"0160","addr:street"=>"Fridtjof Nansens plass","alt_name"=>"Borggården Biffrestaurant","cuisine"=>"steak_house","email"=>"borggarden@online.no","opening_hours"=>"Mo-Sa 15:00-23:00; Su 15:00-22:00","phone"=>"+47 22420905","website"=>"http://www.borggarden.no"'}, +geometry:{type:"Point",coordinates:[10.7344049,59.9132125]}},{type:"Feature",properties:{osm_id:"992764242",name:"Brasserie Lipp",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:street"=>"Fridtjof Nansens plass"'},geometry:{type:"Point",coordinates:[10.7353936,59.9125322]}},{type:"Feature",properties:{osm_id:"992764246",name:"Churchills Winebar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:housenumber"=>"6","addr:street"=>"Fridtjof Nansens plass"'},geometry:{type:"Point",coordinates:[10.7353292,59.912984]}},{type:"Feature",properties:{osm_id:"1016121536",name:"Bølgen & moi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7353755,58.9736364]}},{type:"Feature",properties:{osm_id:"1021068048",name:"Namaste India",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"10","addr:street"=>"Mandalls gate","cuisine"=>"indian","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7631083,59.911047]}},{type:"Feature",properties:{osm_id:"1023953317",name:"Lian Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.3106117,63.4024817]}},{type:"Feature",properties:{osm_id:"1024139713",name:"Corner'n",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.9420488,60.8846652]}},{type:"Feature",properties:{osm_id:"1025366805",name:"Khao Thai",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"contact:phone"=>"73 51 66 44","cuisine"=>"thai","website"=>"http://www.khaothai.no/"'}, +geometry:{type:"Point",coordinates:[10.4004427,63.4330552]}},{type:"Feature",properties:{osm_id:"1025373819",name:"Raja Indian Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"21b","addr:postcode"=>"7030","addr:street"=>"Elgeseter gate","contact:phone"=>"73 93 59 82","cuisine"=>"indian","website"=>"http://rajaindian.no"'},geometry:{type:"Point",coordinates:[10.3966306,63.4187046]}},{type:"Feature", +properties:{osm_id:"1032929005",name:"Senjastua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[17.9498541,69.2444476]}},{type:"Feature",properties:{osm_id:"1033588485",name:"Brumunddal Sushi Tuan Dat Le",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"5","addr:postcode"=>"2380","addr:street"=>"Brugata","cuisine"=>"sea_food"'}, +geometry:{type:"Point",coordinates:[10.9398843,60.8854274]}},{type:"Feature",properties:{osm_id:"1033680019",name:"Lyche",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.3954543,63.4222771]}},{type:"Feature",properties:{osm_id:"1039138400",name:"Kontoret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[5.5018119,59.7797198]}},{type:"Feature",properties:{osm_id:"1053666516",name:"Havsmak",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"4","addr:postcode"=>"0255","addr:street"=>"Henrik Ibsens gate","cuisine"=>"seafood","email"=>"post@havsmak.no","facebook"=>"http://facebook.no/havsmak","phone"=>"+47 24133800","website"=>"http://www.havsmak.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7286439,59.915057]}},{type:"Feature",properties:{osm_id:"1064592014",name:"Lunchbaren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.739058,58.847864]}},{type:"Feature",properties:{osm_id:"1071716362",name:"Pizzastua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[10.4363105,59.8338747]}},{type:"Feature",properties:{osm_id:"1071716419",name:"Dolly Dimple",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.437058,59.833607]}},{type:"Feature",properties:{osm_id:"1072604178",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[9.2390867,60.9850515]}},{type:"Feature",properties:{osm_id:"1072624987",name:"Kokkens Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2684999,60.1775234]}},{type:"Feature",properties:{osm_id:"1072626205",name:"Johansens Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[10.2590365,60.1708109]}},{type:"Feature",properties:{osm_id:"1073810685",name:"Thon Hotel Hallingdal, Jergerstugu",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.5598914,60.629792]}},{type:"Feature",properties:{osm_id:"1074339516",name:"Captain's Cabin",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[5.2659274,59.4141319]}},{type:"Feature",properties:{osm_id:"1074903252",name:"Tjuvholmen Sjømagasin",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"14","addr:postcode"=>"0252","addr:street"=>"Tjuvholmen Allé","cuisine"=>"sea_food","website"=>"http://www.sjomagasinet.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7220016,59.9078276]}},{type:"Feature",properties:{osm_id:"1091505300", +name:"Cafe Herman",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housename"=>"Gamlehotellet","capacity"=>"36","opening_hours"=>"Mo-Th 11:00-22:00; Fr-Sa 11:00-01:00;","phone"=>"+4747708166","website"=>"http://cafeherman.no","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[6.85274,61.182566]}},{type:"Feature",properties:{osm_id:"1091798670",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.0745184,60.7964849]}},{type:"Feature",properties:{osm_id:"1094235932",name:"Café Ekspress",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.740814,58.9479441]}},{type:"Feature",properties:{osm_id:"1094285866",name:"Pasta Fresca",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pasta","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7395453,58.9476881]}},{type:"Feature",properties:{osm_id:"1103487055",name:"Dr. Hagen Cafè og Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"capacity"=>"50"'},geometry:{type:"Point",coordinates:[7.098371,61.23013]}},{type:"Feature",properties:{osm_id:"1103679675",name:"La Pergola", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","website"=>"http://www.qualityhotelsogndal.no/la-pergola"'},geometry:{type:"Point",coordinates:[7.09848,61.23007]}},{type:"Feature",properties:{osm_id:"1113659673",name:"Jostedal Hotell",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"hotel","website"=>"http://jostedalhotel.no"'},geometry:{type:"Point", +coordinates:[7.2642074,61.6314507]}},{type:"Feature",properties:{osm_id:"1118788296",name:"Trippel M",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[8.7119012,58.4585482]}},{type:"Feature",properties:{osm_id:"1122644206",name:"Chablis",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"french","phone"=>"+47 73874250","website"=>"http://www.chablis-brasseriogbar.com/"'}, +geometry:{type:"Point",coordinates:[10.4026996,63.4279126]}},{type:"Feature",properties:{osm_id:"1125556894",name:"Eiksetra",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.1280175,59.8194422]}},{type:"Feature",properties:{osm_id:"1130838311",name:"Hanne på Høyden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[5.3256456,60.3880936]}},{type:"Feature",properties:{osm_id:"1133968915",name:"Da Capo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6884562,59.9212653]}},{type:"Feature",properties:{osm_id:"1133972870",name:"Bistro to kokker kafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[5.0331103,61.6001826]}},{type:"Feature",properties:{osm_id:"1133988781",name:"Hjørnevikbua restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"23","addr:street"=>"Strandgata","description"=>"Seafood","phone"=>"+4757740122","website"=>"http://www.tokokker.as"'},geometry:{type:"Point",coordinates:[5.03127,61.600173]}},{type:"Feature",properties:{osm_id:"1137765624",name:"Alex Sushi", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0254","addr:street"=>"Cort Adelers gate","cuisine"=>"sushi","email"=>"alex@alexsushi.no","opening_hours"=>"Mo-Su 16:00-22:00","phone"=>"+47 22439999","website"=>"http://alexsushi.no/oslo"'},geometry:{type:"Point",coordinates:[10.7207731,59.9146225]}},{type:"Feature",properties:{osm_id:"1149988406",name:"Egon Sandvika", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Th 10:00-23:00; Fr-Sa 10:00-24:00; Su 12:00-23:00;","operator"=>"Egon","website"=>"http://www.egon.no/index.asp?MenuID=2806&DocID=5308","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.5225357,59.8900813]}},{type:"Feature",properties:{osm_id:"1152953396",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.1993967,60.5401849]}},{type:"Feature",properties:{osm_id:"1156633967",name:"Laaven 1790",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"description"=>"Serves fast lunch daytime and has after ski at night"'},geometry:{type:"Point",coordinates:[12.2381692,61.3091342]}},{type:"Feature",properties:{osm_id:"1177278760",name:null,barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.2221227,59.1351521]}},{type:"Feature",properties:{osm_id:"1177505629",name:"Torghuset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[12.2388677,61.3073528]}},{type:"Feature",properties:{osm_id:"1185254652",name:"Noahs Ark",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"23","addr:street"=>"Thorvald Meiers Gate","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.758698,59.9272535]}},{type:"Feature",properties:{osm_id:"1188976014",name:"India Tandoori",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point", +coordinates:[5.7308614,58.9735368]}},{type:"Feature",properties:{osm_id:"1213694549",name:"Sushi of Life",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"70","addr:postcode"=>"0259","addr:street"=>"Briskebyveien","cuisine"=>"sushi","phone"=>"+47 22557070"'},geometry:{type:"Point",coordinates:[10.7161245,59.9214412]}},{type:"Feature",properties:{osm_id:"1218979338",name:"Bryggeloftet",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.3256068,60.3959201]}},{type:"Feature",properties:{osm_id:"1218983029",name:"Ricks",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.ricks.no/","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.3209128,60.3926495]}},{type:"Feature",properties:{osm_id:"1225126208", +name:"Kebab Bjerkås",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.485603,59.7926575]}},{type:"Feature",properties:{osm_id:"1230941533",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[17.4364343,68.4417251]}},{type:"Feature", +properties:{osm_id:"1231556523",name:"Signalen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"email"=>"signalen@live.no","phone"=>"66918000","website"=>"http://www.signalen-tangenbrygga.no","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.6559043,59.8708113]}},{type:"Feature",properties:{osm_id:"1234974424",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[9.6919537,62.5959375]}},{type:"Feature",properties:{osm_id:"1234993360",name:"Sushi Bar Nedre Elvehavn",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sushi","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.41092,63.43337]}},{type:"Feature",properties:{osm_id:"1236696787",name:"Dolly Dimples Straume",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","operator"=>"Dolly Dimples"'},geometry:{type:"Point",coordinates:[5.1218249,60.3584568]}},{type:"Feature",properties:{osm_id:"1236696842",name:"Peppes Pizza Sartor",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","operator"=>"Peppes Pizza","phone"=>"+47 2222 5555","website"=>"http://peppes.no"'},geometry:{type:"Point",coordinates:[5.1247358, +60.3581966]}},{type:"Feature",properties:{osm_id:"1236696866",name:"Hot Wok Sartor",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","opening_hours"=>"Mo-Sa 12:00-21:00; Su 13:00-21:00","operator"=>"Hot Wok","phone"=>"+47 5633 0001","website"=>"http://hotwok.no","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.1254346,60.3577477]}},{type:"Feature",properties:{osm_id:"1238837183",name:"Viva la Italia", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza;kebab"'},geometry:{type:"Point",coordinates:[17.4302996,68.4387821]}},{type:"Feature",properties:{osm_id:"1246009126",name:"Antonio's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"8","addr:postcode"=>"1911","addr:street"=>"Bakkehagan","cuisine"=>"indian"'},geometry:{type:"Point", +coordinates:[11.1520767,59.8294231]}},{type:"Feature",properties:{osm_id:"1246262209",name:"Beddingen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[8.3780583,58.2477821]}},{type:"Feature",properties:{osm_id:"1250863592",name:"Dickens",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point", +coordinates:[5.7312406,58.970566]}},{type:"Feature",properties:{osm_id:"1251040039",name:"Bøker og Børst",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:street"=>"Øvre Holmegate","gay"=>"welcome","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.7334855,58.9727576]}},{type:"Feature",properties:{osm_id:"1251056299",name:"Sjøhuset Skagen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7309097,58.9710004]}},{type:"Feature",properties:{osm_id:"1251056301",name:"Mexico",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.731157,58.9707827]}},{type:"Feature",properties:{osm_id:"1251134802",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7302255,58.9700362]}},{type:"Feature",properties:{osm_id:"1251134810",name:"Opera",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.7320819,58.9722222]}},{type:"Feature",properties:{osm_id:"1254283838",name:"Hankø Marina",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7887816,59.2137702]}},{type:"Feature",properties:{osm_id:"1255229011",name:"Club Alrek (only open fridays)",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housename"=>"Alrek studentheim (Alrek Student house)","addr:housenumber"=>"25","addr:postcode"=>"5009","addr:street"=>"Årstadveien","wifi"=>"free"'},geometry:{type:"Point",coordinates:[5.3588499,60.3792644]}}, +{type:"Feature",properties:{osm_id:"1258380821",name:"Galgeberg Corner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7804949,59.9072312]}},{type:"Feature",properties:{osm_id:"1258380824",name:"Kampen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7881767,59.9106255]}},{type:"Feature", +properties:{osm_id:"1258380825",name:"Internasjonalen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7494671,59.9144013]}},{type:"Feature",properties:{osm_id:"1259269852",name:"Casino",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housename"=>"Casino Pub","addr:housenumber"=>"3","addr:postcode"=>"3510","addr:street"=>"St. Olavsgate"'}, +geometry:{type:"Point",coordinates:[10.2541165,60.1657185]}},{type:"Feature",properties:{osm_id:"1259269869",name:"To Brødre",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housename"=>"To Brødre","addr:housenumber"=>"4","addr:postcode"=>"3510","addr:street"=>"Søndre Torv"'},geometry:{type:"Point",coordinates:[10.2553316,60.1663884]}},{type:"Feature",properties:{osm_id:"1259300200",name:"Lloyds",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"5","addr:postcode"=>"3510","addr:street"=>"Arnemansveien","alt_name"=>"Lloyds Pub"'},geometry:{type:"Point",coordinates:[10.2567719,60.1690677]}},{type:"Feature",properties:{osm_id:"1259300204",name:"Smutthullet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.2548702,60.1670996]}},{type:"Feature", +properties:{osm_id:"1259300224",name:"Un Poco",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"5","addr:postcode"=>"3510","addr:street"=>"Arnemansveien","alt_name"=>"Bar Latino UN Poco"'},geometry:{type:"Point",coordinates:[10.2567209,60.1687421]}},{type:"Feature",properties:{osm_id:"1259677230",name:"Valen Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:housename"=>"Valen Restaurant","alt_name"=>"Sto Bobilcamp","cuisine"=>"regional","int_name"=>"Stø Bobilcamp","opening_hours"=>"May 15-Sep 1","operator"=>"Stø Bobilcamp","website"=>"http://www.stobobilcamp.no/"'},geometry:{type:"Point",coordinates:[15.1092105,69.0192885]}},{type:"Feature",properties:{osm_id:"1261438446",name:"Rendez-vous kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"alt_name"=>"Renna kro"'}, +geometry:{type:"Point",coordinates:[10.7802943,59.935062]}},{type:"Feature",properties:{osm_id:"1261882797",name:"Sky Club",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.729034,58.9698485]}},{type:"Feature",properties:{osm_id:"1261916091",name:"Tango",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[5.728484,58.9708336]}},{type:"Feature",properties:{osm_id:"1261931353",name:"Viking Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.7329348,58.9668434]}},{type:"Feature",properties:{osm_id:"1262031735",name:"Bevaremegvel",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point", +coordinates:[5.7317746,58.9709524]}},{type:"Feature",properties:{osm_id:"1262623692",name:"Bryggen Asian Cooking",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"asian","opening_hours"=>"Mo-Su 16:00-23:00","phone"=>"40618807"'},geometry:{type:"Point",coordinates:[10.4023735,63.4280251]}},{type:"Feature",properties:{osm_id:"1262634956",name:"Dickens",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2028375,59.7445812]}},{type:"Feature",properties:{osm_id:"1262634965",name:"Buddy scene",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.2064156,59.7440541]}},{type:"Feature",properties:{osm_id:"1268465480",name:"Asylet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"28","addr:postcode"=>"0188","addr:street"=>"Grønland","email"=>"bestilling@asylet.no","opening_hours"=>"Mo-Fr 11:00-00:30; Sa 12:00-00:30; Su 12:00-23:00","phone"=>"+47 22170939","website"=>"http://www.asylet.no/","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7623616,59.9128718]}},{type:"Feature",properties:{osm_id:"1271369346",name:"Unique",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.204419,59.7446416]}},{type:"Feature",properties:{osm_id:"1271369350",name:"Lauritz",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.2040543,59.7439956]}},{type:"Feature",properties:{osm_id:"1271369392",name:"Huset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.1978879,59.7392314]}},{type:"Feature",properties:{osm_id:"1271779921",name:"Phileas Fogg",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"27","addr:postcode"=>"4006","addr:street"=>"Skagen","cuisine"=>"american","phone"=>"+47 51 53 70 50","website"=>"http://www.phileasfogg.no/","wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[5.7308284,58.9716223]}},{type:"Feature",properties:{osm_id:"1271779923",name:"Charlottenlund",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7345943,58.9676375]}},{type:"Feature",properties:{osm_id:"1271779925",name:"Kiellands",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7348035, +58.9679638]}},{type:"Feature",properties:{osm_id:"1271779926",name:"Harbour",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7313327,58.9714771]}},{type:"Feature",properties:{osm_id:"1271795781",name:"City Brasserie",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7303161, +58.9717357]}},{type:"Feature",properties:{osm_id:"1271803028",name:"Naree Thai",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7345379,58.9726938]}},{type:"Feature",properties:{osm_id:"1271948706",name:"L'Italiano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7318316,58.9710527]}}, +{type:"Feature",properties:{osm_id:"1272498356",name:"Bølgen & Moi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"5","addr:postcode"=>"0252","addr:street"=>"Tjuvholmen allé","email"=>"tjuvholmen@bolgenogmoi.no","opening_hours"=>"Mo-Fr 11:00-01:00; Sa 12:00-01:00","phone"=>"+47 22441020","website"=>"http://www.bolgenogmoi.no","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7228487, +59.9090254]}},{type:"Feature",properties:{osm_id:"1272498362",name:"BAR Tjuvholmen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"6","addr:street"=>"Bryggegangen"'},geometry:{type:"Point",coordinates:[10.7220532,59.9086878]}},{type:"Feature",properties:{osm_id:"1273529374",name:"Sushi bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:housenumber"=>"59","addr:street"=>"Munkegata","phone"=>"+4773521020","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.3938104,63.433585]}},{type:"Feature",properties:{osm_id:"1274798437",name:"Fyret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housename"=>"Basarene","addr:housenumber"=>"6","addr:postcode"=>"0181","addr:street"=>"Youngstorget","alt_name"=>"Fyret Mat & Drikke","cuisine"=>"regional","website"=>"www.fyretmatogdrikke.no","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7483767,59.9151788]}},{type:"Feature",properties:{osm_id:"1279083119",name:"Åspaviljongen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:postcode"=>"3015","addr:street"=>"Bragernesåsen","website"=>"http://www.aaspaviljongen.no/"'},geometry:{type:"Point",coordinates:[10.2041983,59.7502161]}},{type:"Feature",properties:{osm_id:"1279213297",name:"Dolly Dimpels",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.3227174,60.408872]}},{type:"Feature",properties:{osm_id:"1280252190",name:"China House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"mo-sa 12:00-23:00; su 13:00-22:00","phone"=>"+4757678700"'},geometry:{type:"Point",coordinates:[7.104613,61.230533]}},{type:"Feature", +properties:{osm_id:"1280413019",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.0626684,59.6939297]}},{type:"Feature",properties:{osm_id:"1280413020",name:"Raulandstoga",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.0629902,59.6950233]}},{type:"Feature",properties:{osm_id:"1282769266", +name:"Bulduk's restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"phone"=>"+4770068232"'},geometry:{type:"Point",coordinates:[6.125639,62.20034]}},{type:"Feature",properties:{osm_id:"1286853823",name:"Wallmans Salonger",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7567201,59.9303543]}},{type:"Feature",properties:{osm_id:"1287798779", +name:"Agave",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"8","addr:postcode"=>"0355","addr:street"=>"Bogstadveien","cuisine"=>"mexican"'},geometry:{type:"Point",coordinates:[10.7238234,59.9243264]}},{type:"Feature",properties:{osm_id:"1287956322",name:"Victor",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.771341, +59.9416128]}},{type:"Feature",properties:{osm_id:"1288335262",name:"Grisen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.76279,59.9341388]}},{type:"Feature",properties:{osm_id:"1291415412",name:"Bråstadvika",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6768765, +60.8197073]}},{type:"Feature",properties:{osm_id:"1295799169",name:"Kulå Bowling",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[7.2556875,62.2984532]}},{type:"Feature",properties:{osm_id:"1298853098",name:"Café Abel",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0851","addr:street"=>"Vestgrensa","opening_hours"=>"Mo-Su 12:00-23:00","phone"=>"+47 22466381","website"=>"http://www.cafeabel.no/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.7287258,59.9405736]}},{type:"Feature",properties:{osm_id:"1303099726",name:"Kafé Ole B",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.3847403,60.2186679]}},{type:"Feature",properties:{osm_id:"1303161767",name:"Nye Collets Café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null}, +geometry:{type:"Point",coordinates:[10.7384826,59.927151]}},{type:"Feature",properties:{osm_id:"1303497083",name:"Hardangerfjord Hotell",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"other"'},geometry:{type:"Point",coordinates:[6.201906,60.385571]}},{type:"Feature",properties:{osm_id:"1305630361",name:"Naturbakst",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[5.272916,59.410263]}},{type:"Feature",properties:{osm_id:"1305815382",name:"Mack'en",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.2674108,59.4125942]}},{type:"Feature",properties:{osm_id:"1310344291",name:"Bryggehjørnet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[5.8502477,58.9287507]}},{type:"Feature",properties:{osm_id:"1312363753",name:"Alexandros",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"greek"'},geometry:{type:"Point",coordinates:[10.7337075,59.9196489]}},{type:"Feature",properties:{osm_id:"1313808573",name:"Præstengbrygga",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:null},geometry:{type:"Point",coordinates:[14.4786688,68.2101101]}},{type:"Feature",properties:{osm_id:"1313813605",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[14.478583,68.2101032]}},{type:"Feature",properties:{osm_id:"1313813609",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[14.4768088,68.2108783]}},{type:"Feature",properties:{osm_id:"1317058104",name:"Inside Rock Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"7","addr:postcode"=>"5014","addr:street"=>"Vaskerelvsmauet","cuisine"=>"burger","website"=>"http://www.insiderockcafe.no","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.3218275,60.3914617]}},{type:"Feature",properties:{osm_id:"1318750168",name:"Olivia", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"34","addr:postcode"=>"0352","addr:street"=>"Hegdehaugsveien","cuisine"=>"italian","website"=>"http://oliviarestauranter.no/"'},geometry:{type:"Point",coordinates:[10.726215,59.922375]}},{type:"Feature",properties:{osm_id:"1321464999",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[10.5950591,59.8996118]}},{type:"Feature",properties:{osm_id:"1323873709",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.2847671,60.9702875]}},{type:"Feature",properties:{osm_id:"1328753155",name:"Pasta Basta",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'}, +geometry:{type:"Point",coordinates:[10.725763,59.923907]}},{type:"Feature",properties:{osm_id:"1328765252",name:"Cafekontoret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.768294,59.908677]}},{type:"Feature",properties:{osm_id:"1329411486",name:"Trattoria Popolare",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0560","addr:street"=>"Trondheimsveien","cuisine"=>"italian","email"=>"post@popolare.no","fax"=>"+47 22692923","opening_hours"=>"Mo-Tu 11:00-24:00; We-Th 11:00-01:00; Fr-Sa 11:00-02:00; Su 12:00-24:00","phone"=>"+47 21383930","website"=>"http://popolare.no","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7599078,59.9182462]}},{type:"Feature",properties:{osm_id:"1329411500",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"tapas","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7574885,59.9218464]}},{type:"Feature",properties:{osm_id:"1329411510",name:"Café di Roma",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"6","addr:postcode"=>"0551","addr:street"=>"Sofienberggata","alt_name"=>"Cafe di Roma","cuisine"=>"pizza","opening_hours"=>"Mo-Sa 12:00-01:00; Su 13:00-01:00","phone"=>"+47 22376444","website"=>"http://www.cafediroma.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7567911,59.9224244]}},{type:"Feature",properties:{osm_id:"1329411515",name:"Trancher",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"78","addr:postcode"=>"0550","addr:street"=>"Thorvald Meyers Gate","cuisine"=>"steak_house","website"=>"http://trancher.no/","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7595591,59.918835]}},{type:"Feature",properties:{osm_id:"1329411540",name:"Rice bolle",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"67A","addr:street"=>"Markveien","cuisine"=>"thai","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7567804,59.9187141]}},{type:"Feature",properties:{osm_id:"1339417283",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2258156,61.7878139]}},{type:"Feature",properties:{osm_id:"1342604157",name:"Magneten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[10.7653909,59.9361092]}},{type:"Feature",properties:{osm_id:"1343912960",name:"Tollboden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.4140345,58.8689774]}},{type:"Feature",properties:{osm_id:"1349742668",name:"Chennai Tandoori",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point", +coordinates:[10.8674204,59.9509256]}},{type:"Feature",properties:{osm_id:"1349742672",name:"Hayeli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.8672261,59.951047]}},{type:"Feature",properties:{osm_id:"1350732821",name:"Vertshuset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"description"=>"Also a pub","opening_hours"=>"Mo-Su 20:00-01:30"'}, +geometry:{type:"Point",coordinates:[6.544502,60.069476]}},{type:"Feature",properties:{osm_id:"1359361582",name:"Øygardstøl Fjellrestaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"alt_name"=>"Ørnereiret","website"=>"http://visitkjerag.no/"'},geometry:{type:"Point",coordinates:[6.6520441,59.0467417]}},{type:"Feature",properties:{osm_id:"1361473270",name:"Isbua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.5309506,58.2347674]}},{type:"Feature",properties:{osm_id:"1362969195",name:"Beach Club",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"14","addr:postcode"=>"0250","addr:street"=>"Bryggetorget","description"=>"Perennial contender for the honor of serving Oslo\'s best burgers","opening_hours"=>"Mo-Tu 11:00-22:00; We-Fr 11:00-23:00; Sa 12:00-23:00; Su 12:00-22:00","phone"=>"+47 22838382","website"=>"www.beachclub.no","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.724455,59.909376]}},{type:"Feature",properties:{osm_id:"1362969403",name:"Eataly Ristorante",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.7241874,59.909216]}},{type:"Feature",properties:{osm_id:"1363017825",name:"Baldr spiseri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.724734,59.909455]}},{type:"Feature",properties:{osm_id:"1363018210",name:"Cafe Sorgenfri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.724949,59.909522]}},{type:"Feature",properties:{osm_id:"1364160505",name:"Gjestehus Kongsfjord",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"guest_house"'},geometry:{type:"Point",coordinates:[29.352529,70.724348]}},{type:"Feature",properties:{osm_id:"1365716496",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","website"=>"https://www.peppes.no"'},geometry:{type:"Point",coordinates:[23.271453,69.965043]}},{type:"Feature",properties:{osm_id:"1369016665",name:"Peppes Pizza", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2027021,59.7403726]}},{type:"Feature",properties:{osm_id:"1369016666",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2034397,59.7454802]}},{type:"Feature",properties:{osm_id:"1369504726",name:"ParadIs",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"ice_cream","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4032843,59.2648882]}},{type:"Feature",properties:{osm_id:"1371294984",name:"Fryatun",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.045243,61.5488041]}},{type:"Feature",properties:{osm_id:"1371624782", +name:"Dragens restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.811669,59.9423669]}},{type:"Feature",properties:{osm_id:"1371749382",name:"Onkel Oskar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.4139006,58.8689193]}},{type:"Feature",properties:{osm_id:"1372829089", +name:"Karius & Backtus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"opening_hours"=>"Sa 22:00-03:00"'},geometry:{type:"Point",coordinates:[6.2721731,62.6384028]}},{type:"Feature",properties:{osm_id:"1374534312",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[17.053106,69.362538]}},{type:"Feature",properties:{osm_id:"1376727149", +name:"The Smoothie Factory",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7037969,59.9432415]}},{type:"Feature",properties:{osm_id:"1376881309",name:"Milano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian;kebab","internet_access"=>"no","opening_hours"=>"13:00-24:00","phone"=>"+4778442113","smoking"=>"no","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[23.3728587,69.96935230000001]}},{type:"Feature",properties:{osm_id:"1378818223",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[12.6033445,66.3625116]}},{type:"Feature",properties:{osm_id:"1382883950",name:"Friisebrygga mat og vin",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"5","addr:street"=>"Friisebrygga","cuisine"=>"international","website"=>"http://www.frisebrygga.no"'}, +geometry:{type:"Point",coordinates:[9.6487568,59.1390835]}},{type:"Feature",properties:{osm_id:"1387353524",name:"Jonas B. Gundersen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9946672,58.1453528]}},{type:"Feature",properties:{osm_id:"1388494335",name:"Kontoret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[5.3227149,60.3916282]}},{type:"Feature",properties:{osm_id:"1388494339",name:"Legal",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.3231821,60.3894596]}},{type:"Feature",properties:{osm_id:"1390404521",name:"Regina Pizzeria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","diet:vegetarian"=>"yes","website"=>"http://www.just-eat.no/restaurants-grand-regina"'}, +geometry:{type:"Point",coordinates:[5.3670769,60.3536556]}},{type:"Feature",properties:{osm_id:"1393585179",name:"Glass",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.2062418,59.7421218]}},{type:"Feature",properties:{osm_id:"1393585185",name:"Skutebrygga",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.2047593,59.7424027]}},{type:"Feature",properties:{osm_id:"1398409992",name:"Bryggen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional","internet_access"=>"yes","internet_access:fee"=>"no","opening_hours"=>"12:00-19:00","smoking"=>"isolated","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.9054895,62.9069764]}},{type:"Feature",properties:{osm_id:"1402218916",name:"Wok Davids Food", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Kristiansand","addr:housenumber"=>"10","addr:street"=>"Dronningens gate","cuisine"=>"asian","opening_hours"=>"Mo-Sa 12:00-23:00; Su 13:00-23:00"'},geometry:{type:"Point",coordinates:[7.9964164,58.1444624]}},{type:"Feature",properties:{osm_id:"1402218944",name:"Brasserie",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:null},geometry:{type:"Point",coordinates:[7.9948623,58.1427176]}},{type:"Feature",properties:{osm_id:"1404297650",name:"Bocca",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.3222561,60.3922615]}},{type:"Feature",properties:{osm_id:"1404299059",name:"Logehaven",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.322111,60.3917999]}},{type:"Feature",properties:{osm_id:"1404299327",name:"SUMO",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.3215997,60.3906873]}},{type:"Feature",properties:{osm_id:"1404299328",name:"Red Sun",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"sushi"'},geometry:{type:"Point",coordinates:[5.3278455,60.3953438]}},{type:"Feature",properties:{osm_id:"1404299329",name:"Cyclo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.3225063,60.3897835]}},{type:"Feature",properties:{osm_id:"1404303497",name:"Aspendos",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"pizza","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.319303,60.3913318]}},{type:"Feature",properties:{osm_id:"1404303499",name:"Zagros",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.3193942,60.3914616]}},{type:"Feature",properties:{osm_id:"1408525369",name:"MaMi Open Mind",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"pub",other_tags:'"addr:street"=>"Bakkegata","gay"=>"yes","gay:men"=>"yes","gay:only"=>"no","gay:women"=>"yes"'},geometry:{type:"Point",coordinates:[5.7330934,58.9724489]}},{type:"Feature",properties:{osm_id:"1417343316",name:"Wing Wah House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"contact:phone"=>"78433700","contact:website"=>"http://www.wingwahhouse.com","cuisine"=>"chinese","opening_hours"=>"Mo-Th 11:00-22:00; Fr-Sa 11:00-23:00; Su off"'}, +geometry:{type:"Point",coordinates:[23.2749545,69.966944]}},{type:"Feature",properties:{osm_id:"1429910588",name:"Horizont",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"175","addr:postcode"=>"7053","addr:street"=>"Ranheimsvegen","cuisine"=>"asian"'},geometry:{type:"Point",coordinates:[10.5220722,63.4274222]}},{type:"Feature",properties:{osm_id:"1432261248",name:"Restaurant China, Sentrum Syd, Trysil",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[12.2674649,61.3124211]}},{type:"Feature",properties:{osm_id:"1439186262",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"seafood","wheelchair"=>"yes","wheelchair:description"=>"utendørs sitteplasser delvis under tak"'},geometry:{type:"Point",coordinates:[7.9949486, +58.1411107]}},{type:"Feature",properties:{osm_id:"1443664520",name:"Himmel og Hav",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"hotel"'},geometry:{type:"Point",coordinates:[9.4298869,58.8041239]}},{type:"Feature",properties:{osm_id:"1443664562",name:"Portør Pensjonat & Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[9.4284702,58.8026559]}},{type:"Feature",properties:{osm_id:"1445142520",name:"Admiralen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.4156981,58.871289]}},{type:"Feature",properties:{osm_id:"1446029479",name:"Escape",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://cyb.no/kjeller"'},geometry:{type:"Point", +coordinates:[10.7178816,59.943016]}},{type:"Feature",properties:{osm_id:"1447361083",name:"Mr Tang",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"OSLO","addr:housenumber"=>"7","addr:postcode"=>"0553","addr:street"=>"Seilduksgata","cuisine"=>"japanese","internet_access"=>"no","opening_hours"=>"10:00-24:00","phone"=>"22354626","smoking"=>"no","stars"=>"6","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7569495, +59.9253986]}},{type:"Feature",properties:{osm_id:"1447374786",name:"Noodle Pie",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"9A","addr:street"=>"Grüners gate","cuisine"=>"sushi","phone"=>"22381890","website"=>"http://www.noodlepie.no","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7570776,59.9233385]}},{type:"Feature",properties:{osm_id:"1450889350",name:"Da Luca", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[10.9379947,59.2136507]}},{type:"Feature",properties:{osm_id:"1452335106",name:"Kjølen Hotell",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"29","addr:postcode"=>"2423","addr:street"=>"Landsvegen"'},geometry:{type:"Point",coordinates:[12.5367276, +61.2538934]}},{type:"Feature",properties:{osm_id:"1455243748",name:"Sjøormen Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.6353148,59.4808728]}},{type:"Feature",properties:{osm_id:"1457875744",name:"Korshamn Rorbuer",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[7.0017151, +58.0236779]}},{type:"Feature",properties:{osm_id:"1458007418",name:"Jonas B. Gundersen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","website"=>"jbg.no"'},geometry:{type:"Point",coordinates:[7.0686644,58.1382141]}},{type:"Feature",properties:{osm_id:"1480945449",name:"Egon Bristol",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[5.322787,60.3926105]}},{type:"Feature",properties:{osm_id:"1484530052",name:"Surf & Turf",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"2"'},geometry:{type:"Point",coordinates:[30.0393364,69.7276145]}},{type:"Feature",properties:{osm_id:"1485578755",name:"Runganapa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"thai"'}, +geometry:{type:"Point",coordinates:[10.6658051,59.8601641]}},{type:"Feature",properties:{osm_id:"1485579604",name:"Flasken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6586415,59.849685]}},{type:"Feature",properties:{osm_id:"1489395966",name:"Mølla restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'}, +geometry:{type:"Point",coordinates:[10.140893,61.5319632]}},{type:"Feature",properties:{osm_id:"1519566540",name:"Thai & Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sushi"'},geometry:{type:"Point",coordinates:[8.5936715,58.3396985]}},{type:"Feature",properties:{osm_id:"1520474051",name:"Arte Pazza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[10.7383122,59.9266052]}},{type:"Feature",properties:{osm_id:"1520488634",name:"Under Water",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.facebook.com/pages/Underwater-Pub/154001507943980?ref=ts","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7398943,59.9229624]}},{type:"Feature",properties:{osm_id:"1520489484",name:"La Boheme",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.740656,59.9231318]}},{type:"Feature",properties:{osm_id:"1520490188",name:"Planet Bollywood Resturant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"14","addr:street"=>"Ullevålsveien"'},geometry:{type:"Point",coordinates:[10.7407153,59.9231506]}},{type:"Feature", +properties:{osm_id:"1523679585",name:"Gourmet Thai",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"thai"'},geometry:{type:"Point",coordinates:[10.7751249,59.9253668]}},{type:"Feature",properties:{osm_id:"1537546029",name:"Ali Baba",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"turkish","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7635909, +59.9126434]}},{type:"Feature",properties:{osm_id:"1537546166",name:"Charlies Kebab House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"kebab","website"=>"http://charlieskebabhouse.no/"'},geometry:{type:"Point",coordinates:[10.7673086,59.9105971]}},{type:"Feature",properties:{osm_id:"1538381372",name:"Matsalen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:housenumber"=>"2","addr:street"=>"Lagerveien","website"=>"http://www.matsalen.as/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.7021428,58.8954512]}},{type:"Feature",properties:{osm_id:"1538381374",name:"Sabi Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"2","addr:street"=>"Lagerveien","cuisine"=>"sushi","website"=>"http://sabi.no/"'},geometry:{type:"Point",coordinates:[5.7020275, +58.8960318]}},{type:"Feature",properties:{osm_id:"1552239275",name:"Gamle Slemmestad pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.4973202,59.7814425]}},{type:"Feature",properties:{osm_id:"1556812086",name:"Indian Tandoori",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian","wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[5.7383009,58.8507356]}},{type:"Feature",properties:{osm_id:"1568366358",name:"Fuumi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"seafood"'},geometry:{type:"Point",coordinates:[7.9588864,58.1286959]}},{type:"Feature",properties:{osm_id:"1571925705",name:"Jochums Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.jochumspub.no/om/"'}, +geometry:{type:"Point",coordinates:[6.80155,58.094683]}},{type:"Feature",properties:{osm_id:"1573414520",name:"Snippen Sportsbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"191B","addr:postcode"=>"1619","addr:street"=>"Lislebyveien","website"=>"http://www.facebook.com/pages/snippen-sportsbar/106330059457738?sk=info","wifi"=>"yes"'},geometry:{type:"Point",coordinates:[10.9774081,59.2328054]}},{type:"Feature",properties:{osm_id:"1579350203", +name:"Carbiden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.2582006,59.5592954]}},{type:"Feature",properties:{osm_id:"1599900474",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.0375549,60.0699615]}},{type:"Feature",properties:{osm_id:"1599901749",name:null,barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.0373833,60.0701916]}},{type:"Feature",properties:{osm_id:"1609302808",name:"Jørpeland Pizzakafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"kebab"'},geometry:{type:"Point",coordinates:[6.0447032,59.023321]}},{type:"Feature",properties:{osm_id:"1620186256",name:"To kokker mat og vinhus", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7540908,59.9143008]}},{type:"Feature",properties:{osm_id:"1620191400",name:"Den røde mølle",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7560327,59.9138907]}},{type:"Feature",properties:{osm_id:"1622020380",name:"Brazzeriet", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"international"'},geometry:{type:"Point",coordinates:[11.1139534,59.282442]}},{type:"Feature",properties:{osm_id:"1622021538",name:"Pizzanini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[11.113653,59.2825544]}},{type:"Feature",properties:{osm_id:"1622022249", +name:"Knossos",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"greek"'},geometry:{type:"Point",coordinates:[11.1136262,59.2824749]}},{type:"Feature",properties:{osm_id:"1622025335",name:"Tapas de Graciani",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"spanish"'},geometry:{type:"Point",coordinates:[11.1133097,59.2821872]}},{type:"Feature", +properties:{osm_id:"1622026984",name:"Big Horn",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"steak_house"'},geometry:{type:"Point",coordinates:[11.1129556,59.2829572]}},{type:"Feature",properties:{osm_id:"1622027395",name:"Olsen Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.1120598,59.2832668]}},{type:"Feature", +properties:{osm_id:"1622028799",name:"Dickens",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"international"'},geometry:{type:"Point",coordinates:[11.1121885,59.2833956]}},{type:"Feature",properties:{osm_id:"1622030156",name:"Edvarts Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.1118828,59.2837271]}},{type:"Feature", +properties:{osm_id:"1622038204",name:"Dickens",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"international"'},geometry:{type:"Point",coordinates:[11.1121885,59.2833956]}},{type:"Feature",properties:{osm_id:"1622044943",name:"Neptun Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.1137657,59.2823132]}},{type:"Feature", +properties:{osm_id:"1622048345",name:"Butts",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[11.1165954,59.2817364]}},{type:"Feature",properties:{osm_id:"1622049907",name:"Maroon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"international"'},geometry:{type:"Point",coordinates:[11.1140956,59.2825448]}}, +{type:"Feature",properties:{osm_id:"1622051822",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[11.1086856,59.2838162]}},{type:"Feature",properties:{osm_id:"1622060104",name:"Paradise Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[11.1174001, +59.2823338]}},{type:"Feature",properties:{osm_id:"1632646164",name:"Rebekkas Lounge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"vegetarian"'},geometry:{type:"Point",coordinates:[10.7472521,59.9272199]}},{type:"Feature",properties:{osm_id:"1632787939",name:"Raven",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.5462919, +60.8237819]}},{type:"Feature",properties:{osm_id:"1647580756",name:"Taj Mahal",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.2103912,59.7426821]}},{type:"Feature",properties:{osm_id:"1652242718",name:"Haveli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian","wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[10.5596999,59.9172569]}},{type:"Feature",properties:{osm_id:"1652908042",name:"Beyer'en Restaurant og Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Bergen","addr:housenumber"=>"8","addr:postcode"=>"5003","addr:street"=>"Rosenkrantzgaten","website"=>"http://www.firsthotels.no/Vare-Hotell/Hotell-i-Norge/Bergen/First-Hotel-Marin/Restaurant--bar/Beyeren-Restaurant/#tabtop","wheelchair"=>"yes"'},geometry:{type:"Point", +coordinates:[5.3262561,60.3963891]}},{type:"Feature",properties:{osm_id:"1652908087",name:"Chilli Bar & Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Bergen","addr:postcode"=>"5004","addr:street"=>"Strandgaten 190","website"=>"http://chillicatering.com/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3156786,60.3961065]}},{type:"Feature",properties:{osm_id:"1652908095",name:"Clarion Hotel Admiral Restaurant & Bar", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Bergen","addr:postcode"=>"5004","addr:street"=>"C.Sundtsgate 9","website"=>"http://www.clarionadmiral.no/restaurant_bergen.aspx","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3201727,60.3955886]}},{type:"Feature",properties:{osm_id:"1652908129",name:"Egon Kjøttbasaren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:city"=>"Bergen","addr:housenumber"=>"2","addr:postcode"=>"5014","addr:street"=>"Vetrelidsallmenningen","website"=>"http://www.egon.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3262364,60.3956999]}},{type:"Feature",properties:{osm_id:"1652908136",name:"Egon Lagunen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Rådal","addr:postcode"=>"5235","addr:street"=>"Laguneveien 1","website"=>"http://www.egon.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[5.3304378,60.2963329]}},{type:"Feature",properties:{osm_id:"1652908303",name:"Lavik Fjordhotell",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Lavik","addr:postcode"=>"6947","website"=>"http://www.lavikfjordhotell.no/norsk/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.5099366,61.1045855]}},{type:"Feature",properties:{osm_id:"1652908457",name:"Restaurant Laxen Sunnfjord Hotel", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Førde","addr:postcode"=>"6800","addr:street"=>"Storehagen 2","website"=>"https://www.rica.no/hoteller/rica-sunnfjord-hotel/mat-og-drikke/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.8560587,61.4526774]}},{type:"Feature",properties:{osm_id:"1652908478",name:"Salsa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:city"=>"Bergen","addr:housenumber"=>"26","addr:postcode"=>"5001","addr:street"=>"Neumanns gate","website"=>"http://isalsa.no/?page_id=159","wheelchair"=>"no","wheelchair:description"=>"Basement restaurant"'},geometry:{type:"Point",coordinates:[5.3217109,60.3906876]}},{type:"Feature",properties:{osm_id:"1652908537",name:"Zachariasbryggen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Bergen","addr:postcode"=>"5014","addr:street"=>"Torget 2","website"=>"http://www.zb.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[5.3251524,60.3953488]}},{type:"Feature",properties:{osm_id:"1652908555",name:"Zupperia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Bergen","addr:housenumber"=>"9","addr:postcode"=>"5014","addr:street"=>"Nordahl Bruns gate","website"=>"http://www.zupperia.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3237176,60.3907789]}},{type:"Feature",properties:{osm_id:"1654579651", +name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[13.2093399,65.8414712]}},{type:"Feature",properties:{osm_id:"1655095692",name:"Onkel Oskar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[13.1888644,65.83798010000001]}},{type:"Feature",properties:{osm_id:"1666930987", +name:"Råde Vertshus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"international"'},geometry:{type:"Point",coordinates:[10.869545,59.3531898]}},{type:"Feature",properties:{osm_id:"1676051680",name:"Staalonpesä",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[27.8598397,70.0809079]}},{type:"Feature",properties:{osm_id:"1678990323", +name:"Cafe Skysskroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Su 11:00-19:00"'},geometry:{type:"Point",coordinates:[8.9419735,60.7018817]}},{type:"Feature",properties:{osm_id:"1689314080",name:"Redningen v/sjøen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.491347,59.2603689]}},{type:"Feature", +properties:{osm_id:"1694637383",name:"V - Restaurant og Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7513347,59.9221521]}},{type:"Feature",properties:{osm_id:"1706765372",name:"Ujevnt",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.3239888,60.3896871]}},{type:"Feature", +properties:{osm_id:"1709007192",name:"Låven",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.7037781,62.6052453]}},{type:"Feature",properties:{osm_id:"1709775846",name:"Afrodite",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"greek"'},geometry:{type:"Point",coordinates:[10.6558281,59.4343263]}},{type:"Feature",properties:{osm_id:"1709775853", +name:"Shalimar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.6561071,59.4344927]}},{type:"Feature",properties:{osm_id:"1709791417",name:"Hos Naboen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.622145,59.4364704]}},{type:"Feature",properties:{osm_id:"1711617554", +name:"Bonanza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.748743,59.9153228]}},{type:"Feature",properties:{osm_id:"1711617555",name:"Hells Kitchen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7485901,59.9156374]}},{type:"Feature",properties:{osm_id:"1711617556", +name:"Revolver",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7496878,59.916872]}},{type:"Feature",properties:{osm_id:"1711617558",name:"Illegal Burger",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7486759,59.9156898]}},{type:"Feature",properties:{osm_id:"1716066023",name:"Kurdernes hus", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"Kurdish"'},geometry:{type:"Point",coordinates:[10.2170496,59.7331636]}},{type:"Feature",properties:{osm_id:"1721142960",name:"Experten Sportsbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[8.5215642,60.8625562]}},{type:"Feature",properties:{osm_id:"1723064296", +name:"Frimannstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.3440109,62.0448965]}},{type:"Feature",properties:{osm_id:"1725579082",name:"Nabo'n Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.1905714,59.1478586]}},{type:"Feature",properties:{osm_id:"1741165954",name:"NY dag pizza", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Bergen","addr:country"=>"NO","addr:housename"=>"Håkonsgaten","addr:housenumber"=>"15","addr:postcode"=>"5015","cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.3192519,60.3905765]}},{type:"Feature",properties:{osm_id:"1753697971",name:"Hamna Pizza Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[18.9807075,69.7038758]}},{type:"Feature",properties:{osm_id:"1757656622",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[13.2343674,68.092181]}},{type:"Feature",properties:{osm_id:"1760025500",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[4.7902743,61.5647176]}},{type:"Feature",properties:{osm_id:"1766461108",name:"Riwaj",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"26","addr:street"=>"Thorvald Meiers Gate","cuisine"=>"indian","phone"=>"+(47)21900095","url"=>"http://www.riwaj.no/"'},geometry:{type:"Point",coordinates:[10.7592174,59.9273858]}},{type:"Feature",properties:{osm_id:"1768629616", +name:"Saga Trollheimen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[9.1955548,63.0480544]}},{type:"Feature",properties:{osm_id:"1769606910",name:"Ylajali",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[10.7402605,59.9182124]}},{type:"Feature",properties:{osm_id:"1770758037", +name:"Losen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Th 09:00-21:00;Fr-Sa 09:00-00:00;Su 09:00-21:00","website"=>"http://www.losen.no"'},geometry:{type:"Point",coordinates:[10.6691325,59.3290757]}},{type:"Feature",properties:{osm_id:"1770766093",name:"Food Story",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Sa 11:00-22:00;Su 11:00-17:00","website"=>"http://www.foodstory.no/","wheelchair"=>"limited"'}, +geometry:{type:"Point",coordinates:[10.7590635,59.9220645]}},{type:"Feature",properties:{osm_id:"1771460929",name:"Babis Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"72","addr:postcode"=>"1482","addr:street"=>"Stasjonsveien","cuisine"=>"pizza","website"=>"http://www.babis.no/"'},geometry:{type:"Point",coordinates:[10.866554,60.0584805]}},{type:"Feature",properties:{osm_id:"1775501467",name:"Tivolikjeller'n", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6576614,59.4349345]}},{type:"Feature",properties:{osm_id:"1775501750",name:"Kontoret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.6559171,59.4341134]}},{type:"Feature",properties:{osm_id:"1784555269",name:"Mega Sushi",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"6","addr:postcode"=>"0482","addr:street"=>"Grefsenveien","cuisine"=>"japanese"'},geometry:{type:"Point",coordinates:[10.7708987,59.9416783]}},{type:"Feature",properties:{osm_id:"1785852595",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.8302017,59.8484096]}}, +{type:"Feature",properties:{osm_id:"1786581103",name:"8th Avenue Bar & Supper Club",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"food"=>"yes","website"=>"http://www.8thavenue.no/"'},geometry:{type:"Point",coordinates:[6.6931334,58.0979257]}},{type:"Feature",properties:{osm_id:"1791718329",name:"Milano Restaurant og Pizzeria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[6.7005105,58.0877557]}},{type:"Feature",properties:{osm_id:"1795590076",name:"Mat&Mer",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"2","addr:postcode"=>"0468","addr:street"=>"Bergensgata","opening_hours"=>"Mo-Tu 11:00-22:30; Fr-Sa 11:00-23:30; Su 11:00-21:00","website"=>"http://www.matogmer.no/"'},geometry:{type:"Point",coordinates:[10.75897,59.9400216]}},{type:"Feature", +properties:{osm_id:"1800763686",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[17.4580359,69.1987868]}},{type:"Feature",properties:{osm_id:"1803316157",name:"Palmen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wifi"=>"no"'},geometry:{type:"Point",coordinates:[10.2022808,59.7385185]}},{type:"Feature",properties:{osm_id:"1803321885", +name:"The Kings Arms",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.fellini-restaurant.no/","wifi"=>"no"'},geometry:{type:"Point",coordinates:[10.2040511,59.7388781]}},{type:"Feature",properties:{osm_id:"1803325920",name:"Fellini Strømsø",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","website"=>"http://www.fellini-restaurant.no/"'}, +geometry:{type:"Point",coordinates:[10.2037134,59.7386872]}},{type:"Feature",properties:{osm_id:"1803332761",name:"Fellini Bragernes",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","website"=>"http://www.fellini-restaurant.no/"'},geometry:{type:"Point",coordinates:[10.2040564,59.7441087]}},{type:"Feature",properties:{osm_id:"1803333846",name:"Vertshuset Stallen",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"steak_house","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.2032571,59.7445006]}},{type:"Feature",properties:{osm_id:"1803336150",name:"Big Horn Steak House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"steak_house","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.2078333,59.7436708]}},{type:"Feature", +properties:{osm_id:"1803337287",name:"Mirawa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.206862,59.7422625]}},{type:"Feature",properties:{osm_id:"1810728108",name:"China House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","opening_hours"=>"Mo-Su 12:00-22:00; Fr,Sa 12:00-23:00","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[6.4212243,60.62817]}},{type:"Feature",properties:{osm_id:"1810728113",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","opening_hours"=>"Mo-Su 11:00-23:00","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.4226423,60.6292532]}},{type:"Feature",properties:{osm_id:"1810728117",name:"Vossevangen Grill- & Steakhouse",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[6.4234621,60.629369]}},{type:"Feature",properties:{osm_id:"1813472397",name:"Pakkhuset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[6.8042766,58.094941]}},{type:"Feature",properties:{osm_id:"1816089096",name:"China Restaurant",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[8.7110712,62.9695116]}},{type:"Feature",properties:{osm_id:"1816089098",name:"Napoli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[8.7274759,62.9733924]}},{type:"Feature",properties:{osm_id:"1819915966",name:"Mefjord brygge", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.mefjordbrygge.no"'},geometry:{type:"Point",coordinates:[17.4389445,69.5191968]}},{type:"Feature",properties:{osm_id:"1820941903",name:"Bjølsen Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"12A","addr:postcode"=>"0468","addr:street"=>"Sarpsborggata 12A","cuisine"=>"sushi","website"=>"http://www.bjolsensushi.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.759753,59.9423186]}},{type:"Feature",properties:{osm_id:"1821425020",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[9.0976218,59.2961179]}},{type:"Feature",properties:{osm_id:"1824371990",name:"China House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","opening_hours"=>"Tu-Th 13-22;Fr-Sa 13-23;Su 13-22;Holidays 13-22","phone"=>"+47 57662300"'}, +geometry:{type:"Point",coordinates:[7.8092387,61.3106232]}},{type:"Feature",properties:{osm_id:"1824932204",name:"Lanternen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.4141262,58.8679048]}},{type:"Feature",properties:{osm_id:"1827867591",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[7.7323484,63.1138104]}},{type:"Feature",properties:{osm_id:"1830232205",name:"Stjernegammen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[28.0218896,70.0679656]}},{type:"Feature",properties:{osm_id:"1831003660",name:"Zupperia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point", +coordinates:[5.3215435,60.3912732]}},{type:"Feature",properties:{osm_id:"1832530965",name:"Silver Diner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"american"'},geometry:{type:"Point",coordinates:[10.7932026,59.9307849]}},{type:"Feature",properties:{osm_id:"1832538963",name:"Djengis Khan",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.7933314,59.9304274]}},{type:"Feature",properties:{osm_id:"1833498738",name:"Restaurant Fosnavåg Brygge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.6340102,62.3421972]}},{type:"Feature",properties:{osm_id:"1834028915",name:"Fellini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[10.3547897,63.3501484]}},{type:"Feature",properties:{osm_id:"1836346279",name:"Puben på brygga",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"yes","wifi"=>"no"'},geometry:{type:"Point",coordinates:[7.0006441,58.0227239]}},{type:"Feature",properties:{osm_id:"1837787932",name:"Sørfjorden Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"Thai;Norwegian","opening_hours"=>"Mo-Su 14-21","phone"=>"+4794015032","toilets"=>"yes","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[6.5470453,60.0702754]}},{type:"Feature",properties:{osm_id:"1841102499",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[13.8475506,68.1225567]}},{type:"Feature",properties:{osm_id:"1843673503",name:"Hulen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.3245204, +60.3850904]}},{type:"Feature",properties:{osm_id:"1845885805",name:"Havana",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9925152,58.1439373]}},{type:"Feature",properties:{osm_id:"1845885808",name:"Bakgården",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9952239,58.1432067]}}, +{type:"Feature",properties:{osm_id:"1845885810",name:"Javel pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.9926064,58.1438806]}},{type:"Feature",properties:{osm_id:"1845916798",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[7.9934231, +58.1462417]}},{type:"Feature",properties:{osm_id:"1846693302",name:"Henjatunet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"Norwegian","opening_hours"=>"\\"on demand\\"","phone"=>"+47 41511774","website"=>"http://www.henjatunet.no"'},geometry:{type:"Point",coordinates:[6.844205,61.1891918]}},{type:"Feature",properties:{osm_id:"1847042337",name:"Makrellen",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9958927,58.1406286]}},{type:"Feature",properties:{osm_id:"1847046550",name:"Pieder Ro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9959249,58.1411952]}},{type:"Feature",properties:{osm_id:"1847057735",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[7.9969007,58.1467841]}},{type:"Feature",properties:{osm_id:"1847057740",name:"Glipp",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9942077,58.1456007]}},{type:"Feature",properties:{osm_id:"1847131761",name:"Waldemars mikrobryggeri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"pub",other_tags:'"alt_name"=>"Hansa Microbrewery","int_name"=>"Waldemars Microbrewery","microbrewery"=>"yes","website"=>"http://www.hansaborg.no/waldemarsmikrobryggeri"'},geometry:{type:"Point",coordinates:[5.3477114,60.3864432]}},{type:"Feature",properties:{osm_id:"1851898006",name:"Tattoria Praten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.3558225, +59.1561147]}},{type:"Feature",properties:{osm_id:"1856132568",name:"Le Monde",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9957182,58.14584]}},{type:"Feature",properties:{osm_id:"1856185227",name:"Slakter Sørensen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9953164,58.1457152]}}, +{type:"Feature",properties:{osm_id:"1856192932",name:"Lotus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"vietnamese"'},geometry:{type:"Point",coordinates:[7.9906357,58.1452529]}},{type:"Feature",properties:{osm_id:"1856210872",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.0119405,58.8941618]}}, +{type:"Feature",properties:{osm_id:"1860474025",name:"Naustkroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.206196,62.1016117]}},{type:"Feature",properties:{osm_id:"1860474026",name:"Brasseri Posten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.2058946,62.1018025]}},{type:"Feature", +properties:{osm_id:"1861286927",name:"Dolly Dimples",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[7.9952169,58.1408959]}},{type:"Feature",properties:{osm_id:"1861294323",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9989717,58.1423769]}},{type:"Feature", +properties:{osm_id:"1861310806",name:"Frk Larsen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.9962785,58.143804]}},{type:"Feature",properties:{osm_id:"1862210503",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[8.5327454,63.1424851]}},{type:"Feature", +properties:{osm_id:"1862791476",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[7.9656813,58.1313989]}},{type:"Feature",properties:{osm_id:"1863675721",name:"Duehuset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[7.1872279,60.9064897]}},{type:"Feature",properties:{osm_id:"1865479281", +name:"Ekspedisjonen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[15.0125281,68.9955963]}},{type:"Feature",properties:{osm_id:"1865479282",name:"Holmvik Brygge",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[15.0134092,68.9950623]}},{type:"Feature",properties:{osm_id:"1877839691", +name:"Taj Mahal",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.4076714,59.2668665]}},{type:"Feature",properties:{osm_id:"1877857591",name:"China house",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[13.6105596,68.14735730000001]}},{type:"Feature", +properties:{osm_id:"1877857618",name:"Milano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[13.609801,68.1471675]}},{type:"Feature",properties:{osm_id:"1877857620",name:"Napoli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[13.6138489,68.14864870000001]}}, +{type:"Feature",properties:{osm_id:"1877857622",name:"Oriana Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[13.3495166,68.0346792]}},{type:"Feature",properties:{osm_id:"1877857625",name:"Pepes pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[13.6171133,68.14881530000001]}}, +{type:"Feature",properties:{osm_id:"1877860316",name:"wiik kjellar'n",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[13.6088124,68.1467]}},{type:"Feature",properties:{osm_id:"1880980576",name:"Alpino Pizzeria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[6.4262073,60.6302085]}}, +{type:"Feature",properties:{osm_id:"1880980579",name:"Café Stationen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"operator"=>"Park Hotel"'},geometry:{type:"Point",coordinates:[6.4150283,60.628426]}},{type:"Feature",properties:{osm_id:"1880980584",name:"Ringheim Kafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.ringheimkafe.no/"'}, +geometry:{type:"Point",coordinates:[6.4198958,60.6290099]}},{type:"Feature",properties:{osm_id:"1880980587",name:"Tre Brør Café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.vosscafe.no/"'},geometry:{type:"Point",coordinates:[6.4186947,60.6292076]}},{type:"Feature",properties:{osm_id:"1881198023",name:"Viva Italia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[14.5646338,68.2325833]}},{type:"Feature",properties:{osm_id:"1881198027",name:"napoli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[14.5666474,68.2337865]}},{type:"Feature",properties:{osm_id:"1883597407",name:"Lofthus Samvirkelag",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"42","addr:postcode"=>"0480","addr:street"=>"Åsengata","email"=>" lofthus@apentbakeri.no","opening_hours"=>"Tu-Th 16:00-22:00; Fr-Sa 16:00-23:00; Su 16:00-22:00","operator"=>"Åpent Bakeri","phone"=>"+47 22600666","website"=>"http://www.apentbakeri.no/lofthus/"'},geometry:{type:"Point",coordinates:[10.7738022,59.9394496]}},{type:"Feature",properties:{osm_id:"1883951697",name:"Prestige Café & Catering", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"persian","smoking"=>"no","wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[5.353009,60.317909]}},{type:"Feature",properties:{osm_id:"1884320069",name:"Eik Annen Etage",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"24/26","addr:postcode"=>"0161","addr:street"=>"Stortingsgata","email"=>"annen.etage@restauranteik.no","fax"=>"+47 21547971","level"=>"1","opening_hours"=>"Tu-Sa 18:00-23:00","phone"=>"+47 21547970","website"=>"http://www.restauranteik.no/RestaurantEikAnnenEtage/"'}, +geometry:{type:"Point",coordinates:[10.7338002,59.9139925]}},{type:"Feature",properties:{osm_id:"1884335181",name:"McDonalds",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.7338163,59.9136511]}},{type:"Feature",properties:{osm_id:"1884388489",name:"Oriental",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0159","addr:street"=>"Arbeidergata","cuisine"=>"chinese","email"=>"mail@oriental.no","fax"=>"+47 22418306","level"=>"1","opening_hours"=>"Mo-Sa 15:00-23:30; Su 15:00-22:30","phone"=>"+47 22423738","website"=>"http://www.oriental.no/"'}, +geometry:{type:"Point",coordinates:[10.7409204,59.914496]}},{type:"Feature",properties:{osm_id:"1884392333",name:"Bohemen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0159","addr:street"=>"Arbeidergata","opening_hours"=>"Mo-Th 14:00-00:30; Fr 14:00-02:00; Sa 13:00-02:00; Su 14:00-23:30","phone"=>"+47 22416266","website"=>"http://www.bohemen.no/"'},geometry:{type:"Point", +coordinates:[10.7408399,59.9144986]}},{type:"Feature",properties:{osm_id:"1884449214",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"international"'},geometry:{type:"Point",coordinates:[16.5435028,68.8016068]}},{type:"Feature",properties:{osm_id:"1884449216",name:"Mona Lisa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'}, +geometry:{type:"Point",coordinates:[16.5438067,68.8013279]}},{type:"Feature",properties:{osm_id:"1884449217",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[16.5447803,68.7991281]}},{type:"Feature",properties:{osm_id:"1890545723",name:"fu lam",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"asian","name:cn"=>"富臨軒"'}, +geometry:{type:"Point",coordinates:[17.4269366,68.43732030000001]}},{type:"Feature",properties:{osm_id:"1895117403",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"thai"'},geometry:{type:"Point",coordinates:[5.3610405,60.360672]}},{type:"Feature",properties:{osm_id:"1904025269",name:"Kroverten Mat og Vinhus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:postcode"=>"8270"'},geometry:{type:"Point",coordinates:[16.0826817,68.0467551]}},{type:"Feature",properties:{osm_id:"1904206147",name:"Dalas restauranthus AS",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:postcode"=>"2380","cuisine"=>"international"'},geometry:{type:"Point",coordinates:[10.9420764,60.8847275]}},{type:"Feature",properties:{osm_id:"1905011899",name:"Rødbrygga",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[14.9134128,68.5686561]}},{type:"Feature",properties:{osm_id:"1910691572",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"entrance"=>"main"'},geometry:{type:"Point",coordinates:[10.4340297,59.8340965]}},{type:"Feature",properties:{osm_id:"1913970724",name:"Gunsmoke",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"burger"'},geometry:{type:"Point",coordinates:[10.7594192,59.9254148]}},{type:"Feature",properties:{osm_id:"1914364184",name:"Viva Napoli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian","opening_hours"=>"Mo-Th 14:00-24:00; Fr-Sa 14:00-03:00; Su 13:00-24:00"'},geometry:{type:"Point",coordinates:[9.2646907,59.5626513]}}, +{type:"Feature",properties:{osm_id:"1919843227",name:"Tangenten Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housename"=>"Huset","addr:housenumber"=>"2","addr:postcode"=>"1488","addr:street"=>"Rådyrveien","website"=>"http://www.tangentenbar.no"'},geometry:{type:"Point",coordinates:[10.8474083,60.110391]}},{type:"Feature",properties:{osm_id:"1929102126",name:"Sjøhuset",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.5009256,59.7782402]}},{type:"Feature",properties:{osm_id:"1929351073",name:"Vapiano",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"27","addr:postcode"=>"0158","addr:street"=>"Rådhusgata","email"=>"oslo1@vapia.no","link:facebook"=>"https://www.facebook.com/pages/Vapiano-R%C3%A5dhusplassen/129912293805504","opening_hours"=>"Mo-Th 11:30-24:00; Fr-Sa 11:00-01:00; Su 11:00-24:00","operator"=>"Vapiano","phone"=>"+47 21397460","website"=>"http://www.vapia.no/"'}, +geometry:{type:"Point",coordinates:[10.7359151,59.911155]}},{type:"Feature",properties:{osm_id:"1929373555",name:"Yun Sheng",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.941178,60.8842361]}},{type:"Feature",properties:{osm_id:"1930568938",name:"BrukBAR",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"alt_name"=>"BrukBar Grill & Mat","wifi"=>"yes"'}, +geometry:{type:"Point",coordinates:[5.9204264,60.0615429]}},{type:"Feature",properties:{osm_id:"1935110008",name:"Consenzo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"90","addr:postcode"=>"0255","addr:street"=>"Henrik Ibsens gate","fax"=>"+47 22547179","phone"=>"+47 22547171","website"=>"http://www.consenzo.no/"'},geometry:{type:"Point",coordinates:[10.7191925,59.9145743]}}, +{type:"Feature",properties:{osm_id:"1935662595",name:"Buen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.9619912,59.927839]}},{type:"Feature",properties:{osm_id:"1935770529",name:"Milano Nardo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.4276145, +63.4030265]}},{type:"Feature",properties:{osm_id:"1937377777",name:"Sørlikroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.9769818,59.9200083]}},{type:"Feature",properties:{osm_id:"1937378684",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.9769871,59.919933]}},{type:"Feature", +properties:{osm_id:"1940306128",name:"Tasty Thai",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"7","addr:postcode"=>"0557","addr:street"=>"Sannergata","cuisine"=>"thai"'},geometry:{type:"Point",coordinates:[10.7612393,59.9283759]}},{type:"Feature",properties:{osm_id:"1948264112",name:"Concerto Café, Bar og Pizzeria",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"3","addr:postcode"=>"0251","addr:street"=>"Ruseløkkveien","name:en"=>"Concerto Café, Bar and Pizzeria","opening_hours"=>"Mo-Sa 10:00-21:30; Su 14:30-21:30","phone"=>"+47 22831111","website"=>"http://vikaterrassen.no/butikkoversikt/concerto-caf%C3%A9-bar-og-pizzeria"'},geometry:{type:"Point",coordinates:[10.7289507,59.9141996]}},{type:"Feature",properties:{osm_id:"1948294798",name:"San Lorenzo", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","email"=>"info@sanlorenzo.no","phone"=>"+47 22836600","website"=>"http://www.sanlorenzo.no"'},geometry:{type:"Point",coordinates:[10.7291599,59.9138755]}},{type:"Feature",properties:{osm_id:"1952368721",name:"Vangen Cafe AS",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"42","addr:postcode"=>"5700","addr:street"=>"Vangsgata","opening_hours"=>"Mo-Fr 10:00-17:30; Sa 10:00-16:30; Su 12:00-18:00","website"=>"http://www.vangencafe.no"'}, +geometry:{type:"Point",coordinates:[6.4214117,60.6291027]}},{type:"Feature",properties:{osm_id:"1960935484",name:"Hanami",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1","addr:postcode"=>"0252","addr:street"=>"Kanalen","cuisine"=>"japanese","email"=>"post@hanami.no","opening_hours"=>"Mo-Th 11:00-01:00; Fr 11:00-02:00; Sa 13:00-02:00; Su 15:00-24:00","phone"=>"+47 22831090","website"=>"http://hanami.no"'}, +geometry:{type:"Point",coordinates:[10.7211378,59.9082257]}},{type:"Feature",properties:{osm_id:"1960944751",name:"Olivia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"4","addr:postcode"=>"0252","addr:street"=>"Bryggegangen","cuisine"=>"italian","email"=>"tjuvholmen@olivia.no","opening_hours"=>"Mo-Th 11:00-23:00; Fr-Sa 11:01:00; Su 12:00-23:00","phone"=>"+47 23115470","website"=>"http://oliviarestauranter.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7223923,59.9087325]}},{type:"Feature",properties:{osm_id:"1961109814",name:"Onda Asia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"30","addr:postcode"=>"0250","addr:street"=>"Stranden","cuisine"=>"asian","email"=>"post@onda.no","opening_hours"=>"Mo-Fr 11:00-23:00; Sa 16:00-21:00","phone"=>"+47 45502000","website"=>"http://www.onda.no"'}, +geometry:{type:"Point",coordinates:[10.7258526,59.9085451]}},{type:"Feature",properties:{osm_id:"1961147805",name:"Onda Sea",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"30","addr:postcode"=>"0250","addr:street"=>"Stranden","cuisine"=>"seafood","email"=>"post@onda.no","opening_hours"=>"Mo-Sa 11:00-23:00; Su 13:00-21:00","phone"=>"+47 45502000","website"=>"http://www.onda.no"'}, +geometry:{type:"Point",coordinates:[10.7259062,59.9083663]}},{type:"Feature",properties:{osm_id:"1961158230",name:"Onda Mezzanine",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"30","addr:postcode"=>"0250","addr:street"=>"Stranden","cuisine"=>"international","email"=>"post@onda.no","level"=>"1","opening_hours"=>"Mo-Fr 17:00-23:00","phone"=>"+47 45502000","website"=>"http://www.onda.no"'}, +geometry:{type:"Point",coordinates:[10.7259679,59.9084551]}},{type:"Feature",properties:{osm_id:"1963760389",name:"Sushihjørnet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"82","addr:postcode"=>"0454","addr:street"=>"Ullevålsveien","cuisine"=>"sushi","delivery"=>"no","email"=>" sushi@adamstuen.no","internet_access"=>"no","opening_hours"=>"Mo-Fr 11:00-21:00; Sa-Su 13:00-21:00","outdoor_seating"=>"no","smoking"=>"no","takeaway"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.73402,59.932833]}},{type:"Feature",properties:{osm_id:"1964286275",name:"Japon Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"70B","addr:postcode"=>"0855","addr:street"=>"Sognsveien","cuisine"=>"sushi","opening_hours"=>"Mo-Sa 11:00-21:00; Su 13:00-21:00","phone"=>"+47 22181811","website"=>"http://www.japon-sushi.no/"'},geometry:{type:"Point", +coordinates:[10.7308945,59.9487423]}},{type:"Feature",properties:{osm_id:"1964297183",name:"Indian House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian","diet:vegetarian"=>"yes"'},geometry:{type:"Point",coordinates:[18.953667,69.6473982]}},{type:"Feature",properties:{osm_id:"1971269630",name:"Habibi kafé",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"26","addr:postcode"=>"0184","addr:street"=>"Storgaten","cuisine"=>"chicken","opening_hours"=>"Man.-lør.: 13.00-01.00 Mon-Sat: 1 pm-1 am","phone"=>"+49 22170201","url"=>"www.habibi.no","website"=>"www.habibi.no"'},geometry:{type:"Point",coordinates:[10.75186,59.913963]}},{type:"Feature",properties:{osm_id:"1974503540",name:"Manndalskroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housename"=>"Manndalskroa","addr:housenumber"=>"30","addr:postcode"=>"9144","addr:street"=>"Sentrumsvegen"'}, +geometry:{type:"Point",coordinates:[20.532945,69.5420136]}},{type:"Feature",properties:{osm_id:"1974935431",name:"Restaurant Bambus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","email"=>"bambusr@hotmail.com","website"=>"http://restaurantbambus.no/"'},geometry:{type:"Point",coordinates:[5.8504433,61.4511245]}},{type:"Feature",properties:{osm_id:"1975668823",name:"Tordenskiold",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"27","addr:postcode"=>"0158","addr:street"=>"Rådhusgata","email"=>"tordenskiold.drift@gmail.com","opening_hours"=>"Tu-We 15:00-01:00; Th-Sa 15:00-03:00","phone"=>"+47 22428688","website"=>"http://tordenskiold.no/"'},geometry:{type:"Point",coordinates:[10.7359041,59.9112546]}},{type:"Feature",properties:{osm_id:"1975692020",name:"Oro Bar & Grill",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"6A","addr:postcode"=>"0160","addr:street"=>"Tordenskiolds gate","email"=>"oro@palogness.no","facebook"=>"http://www.facebook.com/RestaurantORO","opening_hours"=>"Mo-Fr 11:00-23:00; Sa 12:00-23:00","phone"=>"+47 23010240","website"=>"http://www.ororestaurant.no/"'},geometry:{type:"Point",coordinates:[10.7361985,59.9126768]}},{type:"Feature",properties:{osm_id:"1975896096",name:"Palermo", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.3592377,63.3979858]}},{type:"Feature",properties:{osm_id:"1977030242",name:"Art of Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"19","addr:postcode"=>"0265","addr:street"=>"Elisenbergveien","cuisine"=>"sushi","opening_hours"=>"Mo-Sa 16:00-00:30","phone"=>"+47 22448800","website"=>"http://www.artofsushi.no"'}, +geometry:{type:"Point",coordinates:[10.7060761,59.9186552]}},{type:"Feature",properties:{osm_id:"1977044807",name:"Lille B",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"3","addr:postcode"=>"0257","addr:street"=>"Bygdøy allé","email"=>"lilleb@bagatelle.no","opening_hours"=>"Mo-Fr 11:30-22:00; Sa 13:00-22:00","phone"=>"+47 22444040","website"=>"http://www.bagatelle.no/lille-b"'},geometry:{type:"Point",coordinates:[10.7168484, +59.9149468]}},{type:"Feature",properties:{osm_id:"1977044808",name:"Bagatelle",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"3","addr:postcode"=>"0257","addr:street"=>"Bygdøy allé","email"=>"hovmester@bagatelle.no","facebook"=>"http://www.facebook.com/pages/Restaurant-Bagatelle/193763237317967","opening_hours"=>"Tu-Sa 18:00-22:00","phone"=>"+47 22444040","website"=>"http://www.bagatelle.no/"'},geometry:{type:"Point", +coordinates:[10.7168914,59.9149979]}},{type:"Feature",properties:{osm_id:"1977054681",name:"McDonald's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1A","addr:postcode"=>"0257","addr:street"=>"Frognerveien","cuisine"=>"burger","opening_hours"=>"Mo-We 09:00-23:00; Th 09:00-03:30; Fr 10:00-03:30; Sa 11:00-03:30; Su 11:00-23:00","phone"=>"+47 46416800","website"=>"http://www.mcdonalds.no","wifi"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7175458,59.9151942]}},{type:"Feature",properties:{osm_id:"1977285560",name:"Corner Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"opening_hours"=>"Tu-Su 18:00-02:00;Sa 18:00-02:00","smoking"=>"no","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.6173933,58.9990153]}},{type:"Feature",properties:{osm_id:"1982627177",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[9.2672592,59.5657218]}},{type:"Feature",properties:{osm_id:"1982628128",name:"Varangerkroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[28.554889,70.1724558]}},{type:"Feature",properties:{osm_id:"1982629643",name:"Capri trattoria",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[28.5542828,70.17301]}},{type:"Feature",properties:{osm_id:"1982637407",name:"Milano Pizzeria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.3815211,62.5750245]}},{type:"Feature",properties:{osm_id:"1982641030",name:"lien fjellgard",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.520271,59.6066985]}},{type:"Feature",properties:{osm_id:"1982658539",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[6.6613335,58.4185179]}},{type:"Feature",properties:{osm_id:"1984040382",name:"Tønsberg pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[10.4196306,59.2933698]}},{type:"Feature",properties:{osm_id:"1984154033",name:"Mellomveien",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"cuisine"=>"coffee_shop"'},geometry:{type:"Point",coordinates:[10.4288073,63.4381711]}},{type:"Feature",properties:{osm_id:"1986822060",name:"Nambo restaurant & bar",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"34","addr:postcode"=>"0367","addr:street"=>"Majorstuveien","cuisine"=>"vietnamese","email"=>"ntthbui@online.no","fax"=>"+47 22592148","opening_hours"=>"Mo-Sa 15:30-23:00; Su 15:00-22:00","phone"=>"+47 22591382","website"=>"http://www.hkon.no/nambo/"'},geometry:{type:"Point",coordinates:[10.7153165,59.927633]}},{type:"Feature",properties:{osm_id:"1986831772",name:"Lille Chef",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7154504,59.9275592]}},{type:"Feature",properties:{osm_id:"1986872148",name:"Umi Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"9A","addr:postcode"=>"0367","addr:street"=>"Neuberggata","cuisine"=>"sushi","email"=>"post@umisushi.no","opening_hours"=>"Mo-Fr 13:00-21:00; Sa-Su 14:00-21:00","phone"=>"+47 22558100","website"=>"http://umisushi.no/"'}, +geometry:{type:"Point",coordinates:[10.7143426,59.9254745]}},{type:"Feature",properties:{osm_id:"1986907555",name:"Pizza Pancetta",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"13A","addr:postcode"=>"0259","addr:street"=>"Eilert Sundts gate","cuisine"=>"pizza","email"=>"post@pancetta.no","opening_hours"=>"Mo-Th 14:00-22:00; Fr-Su 13:00-23:00","phone"=>"+47 24118244","website"=>"http://pancetta.no/"'},geometry:{type:"Point", +coordinates:[10.7165451,59.9209518]}},{type:"Feature",properties:{osm_id:"1986911759",name:"Pizza Pancetta",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"69","addr:postcode"=>"0364","addr:street"=>"Kirkeveien","cuisine"=>"pizza","email"=>"post@pancetta.no","opening_hours"=>"Mo-Th 14:00-22:00; Fr-Su 13:00-23:00","operator"=>"Pizza Pancetta","phone"=>"+47 22599090","website"=>"http://pancetta.no/"'}, +geometry:{type:"Point",coordinates:[10.7195229,59.9301971]}},{type:"Feature",properties:{osm_id:"1987145795",name:"Oslo sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"25","addr:postcode"=>"0363","addr:street"=>"Trudvangveien","cuisine"=>"sushi","level"=>"-1","opening_hours"=>"Mo-Fr 13:00-21:00; Sa-Su 14:00-21:00","phone"=>"+47 22608000","website"=>"http://www.oslosushi.no/"'}, +geometry:{type:"Point",coordinates:[10.7167787,59.9315829]}},{type:"Feature",properties:{osm_id:"1988588025",name:"Valkyrien",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"15","addr:postcode"=>"0366","addr:street"=>"Valkyriegata"'},geometry:{type:"Point",coordinates:[10.7166947,59.9294844]}},{type:"Feature",properties:{osm_id:"1988656478",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"100","addr:postcode"=>"0255","addr:street"=>"Henrik Ibsens gate","cuisine"=>"pizza","opening_hours"=>"Mo-Th 12:00-23:00; Fr 12:00-24:00; Sa 13:00-24:00; Su 13:00-23:00","operator"=>"Peppes Pizza","phone"=>"+47 2222 5555","website"=>"http://www.peppes.no","wifi"=>"free"'},geometry:{type:"Point",coordinates:[10.7188496,59.9140042]}},{type:"Feature",properties:{osm_id:"1988684938", +name:"Grill's Ville",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"29","addr:postcode"=>"0257","addr:street"=>"Niels Juels gate","cuisine"=>"burger","phone"=>"+47 22437744","website"=>"http://www.roomservice.no/Middag/GrillsVille.aspx"'},geometry:{type:"Point",coordinates:[10.7147841,59.9164619]}},{type:"Feature",properties:{osm_id:"1988991449",name:"BAR Bygdøy alle", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"18","addr:postcode"=>"0262","addr:street"=>"Bygdøy allé","opening_hours"=>"Tu-We 17:00-01:00; Th-Sa 17:00-03:00","phone"=>"+47 40003834","website"=>"http://www.bygdoyallerestaurant.no/index.php?option=com_content&view=article&id=30&Itemid=88"'},geometry:{type:"Point",coordinates:[10.7115278,59.9162412]}},{type:"Feature", +properties:{osm_id:"1989010079",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"53","addr:postcode"=>"0265","addr:street"=>"Bygdøy allé","email"=>"frogner@egon.no","fax"=>"+47 23085806","opening_hours"=>"Mo-Th 07:00-23:00; Fr 07:00-23:30; Sa 08:00-23:30; Su 08:00-23:00","operator"=>"Egon","phone"=>"+47 23085810","website"=>"http://www.egon.no/restaurant/egon+frogner"'}, +geometry:{type:"Point",coordinates:[10.7062919,59.9182119]}},{type:"Feature",properties:{osm_id:"1989013637",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"9","addr:postcode"=>"0485","addr:street"=>"Vitaminveien","email"=>"storo@egon.no","fax"=>"+47 21420231","opening_hours"=>"Mo-Sa 10:00-23:00; Su 12:00-23:00","operator"=>"Egon","phone"=>"+47 21420230","website"=>"http://www.egon.no/restaurant/egon+storo"'}, +geometry:{type:"Point",coordinates:[10.7752194,59.9469101]}},{type:"Feature",properties:{osm_id:"1989017228",name:"Egon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"77C","addr:postcode"=>"0855","addr:street"=>"Sognsveien","email"=>"ullevaal@egon.no","fax"=>"+47 22028019","opening_hours"=>"Mo-Su 06:30-23:00","operator"=>"Egon","phone"=>"+47 22028018","website"=>"http://www.egon.no/restaurant/egon+ulleval"'}, +geometry:{type:"Point",coordinates:[10.7363674,59.9496815]}},{type:"Feature",properties:{osm_id:"1997900774",name:"Yazz Lounge & Sportsbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.4176923,60.6294609]}},{type:"Feature",properties:{osm_id:"1999069087",name:"Gastronomisk Selskap",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[29.7497981,70.0740018]}},{type:"Feature",properties:{osm_id:"1999069090",name:"Bajasso",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[29.7517508,70.0733619]}},{type:"Feature",properties:{osm_id:"1999069093",name:"Indigo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[29.7489076,70.07365080000001]}},{type:"Feature",properties:{osm_id:"2004138999",name:"Shangri-La",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"asian"'},geometry:{type:"Point",coordinates:[10.9330115,59.2140255]}},{type:"Feature",properties:{osm_id:"2008800545",name:"Matute",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:country"=>"NO","addr:housenumber"=>"17","addr:street"=>"Fjordgata","contact:phone"=>"+47 73 52 17 16","cuisine"=>"chilean","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.4004713,63.4345972]}},{type:"Feature",properties:{osm_id:"2015912915",name:"Røde Hatt",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.8402984,59.8937525]}},{type:"Feature",properties:{osm_id:"2023496836",name:"Yaya’s",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"53B","addr:postcode"=>"0250","addr:street"=>"Munkedamsveien","alt_name"=>"Yaya’s Thai Beach Bungalow","cuisine"=>"thai","opening_hours"=>"Mo-Su 16:00-22:00","operator"=>"Yaya’s Thai Beach Bungalow","phone"=>"+47 22837110","website"=>"http://yayas.no/"'}, +geometry:{type:"Point",coordinates:[10.7226253,59.9109496]}},{type:"Feature",properties:{osm_id:"2023502978",name:"Yaya’s",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"36","addr:postcode"=>"0357","addr:street"=>"Industrigata","alt_name"=>"Yaya’s Thai Beach Bungalow","cuisine"=>"thai","opening_hours"=>"Mo-Su 16:00-22:00","operator"=>"Yaya’s Thai Beach Bungalow","phone"=>"+47 22837110","website"=>"http://yayas.no/"'}, +geometry:{type:"Point",coordinates:[10.719707,59.9260461]}},{type:"Feature",properties:{osm_id:"2023518409",name:"Yaya’s",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"13","addr:postcode"=>"0158","addr:street"=>"Øvre vollgate 13","alt_name"=>"Yaya’s Thai Beach Bungalow","cuisine"=>"thai","opening_hours"=>"Mo-Su 16:00-22:00","operator"=>"Yaya’s Thai Beach Bungalow","phone"=>"+47 22837110","website"=>"http://yayas.no/"'}, +geometry:{type:"Point",coordinates:[10.7376562,59.9118734]}},{type:"Feature",properties:{osm_id:"2031417852",name:"Petrus mat og vinhus AS",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.7657792,59.923453]}},{type:"Feature",properties:{osm_id:"2040050451",name:"Pizza restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[18.8620633,69.6904426]}},{type:"Feature",properties:{osm_id:"2045236876",name:"Nam Kang Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"24","addr:postcode"=>"0183","addr:street"=>"Torggata","cuisine"=>"japanese","opening_hours"=>"Mo-We 16:00-22:30; Th-Sa 16:00-23:00","phone"=>"+47 22201940","website"=>"http://www.namkang.no/"'}, +geometry:{type:"Point",coordinates:[10.7521598,59.9165088]}},{type:"Feature",properties:{osm_id:"2045251453",name:"Village",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"65","addr:postcode"=>"0265","addr:street"=>"Bygdøy allé","alt_name"=>"Village Tandoori","cuisine"=>"indian","email"=>"post@villagetandoori.no","facebook:page"=>"http://www.facebook.com/Village.Tandoori.Oslo","fax"=>"+47 22049739","phone"=>"+47 22561025","website"=>"http://www.villagetandoori.no/"'}, +geometry:{type:"Point",coordinates:[10.7026796,59.9189313]}},{type:"Feature",properties:{osm_id:"2045271457",name:"Salsa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"25","addr:postcode"=>"0253","addr:street"=>"Huitfeldts gate","alt_name"=>"Salsa Restaurant","email"=>"post@salsa.no","level"=>"-1","opening_hours"=>"Mo-Fr 16:00-22:00; Sa 16:00-24:00","phone"=>"+47 22447724","website"=>"http://www.salsa.no/"'}, +geometry:{type:"Point",coordinates:[10.7230526,59.9131368]}},{type:"Feature",properties:{osm_id:"2045308582",name:"von Porat",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"17","addr:postcode"=>"0178","addr:street"=>"Maridalsveien","email"=>"booking@vonporat.no","facebook"=>"http://www.facebook.com/RestaurantvonPorat","opening_hours"=>"Mo-Th 11:00-01:00; Fr-Sa 11:00-03:00; Su 12:00-17:00","website"=>"http://vonporat.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7523535,59.9222008]}},{type:"Feature",properties:{osm_id:"2045359582",name:"Jacob Aall",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"80","addr:postcode"=>"0550","addr:street"=>"Thorvald Meyers gate","alt_name"=>"Jacob Aall Grünerløkka","email"=>"grunerlokka@jacobaall.no","opening_hours"=>"Mo-Tu 12:00-23:00; We-Th 12:00-01:00; Fr-Sa 12:00-03:00; Su 12:00-23:00","phone"=>"+47 22207776","website"=>"http://www.jacobaall.no/grunerlokka","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7595422,59.9185307]}},{type:"Feature",properties:{osm_id:"2045368072",name:"Justisen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.7469894,59.9145975]}},{type:"Feature",properties:{osm_id:"2045368076",name:"Justisen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7471021,59.9146782]}},{type:"Feature",properties:{osm_id:"2045370704",name:"Sosialen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"13","addr:postcode"=>"0179","addr:street"=>"Møllergata","email"=>"post@sosialen.com","opening_hours"=>"Mo-Tu 15:00-24:00; We-Sa 15:00-03:00","phone"=>"+47 22429700","website"=>"http://www.sosialen.com/"'}, +geometry:{type:"Point",coordinates:[10.7468071,59.9145035]}},{type:"Feature",properties:{osm_id:"2045384807",name:"Statholdergaarden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"11","addr:postcode"=>"0151","addr:street"=>"Rådhusgata","alt_name"=>"Statholdergården","email"=>"post@statholdergaarden.no","fax"=>"+47 22412224","opening_hours"=>"Mo-Sa 18:00-24:00","phone"=>"+47 22418800","website"=>"http://www.statholdergaarden.no"'}, +geometry:{type:"Point",coordinates:[10.7432176,59.9095175]}},{type:"Feature",properties:{osm_id:"2045384808",name:"Statholderens Mat & Vinkjeller",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"11","addr:postcode"=>"0151","addr:street"=>"Rådhusgata","email"=>"post@statholdergaarden.no","fax"=>"+47 22412224","level"=>"-1","opening_hours"=>"Tu-Fr 11:30-24:00; Sa 12:30-24:00","phone"=>"+47 22418800","website"=>"http://www.statholdergaarden.no"'}, +geometry:{type:"Point",coordinates:[10.7431425,59.9094072]}},{type:"Feature",properties:{osm_id:"2045397683",name:"Café Mistral",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"41","addr:postcode"=>"0367","addr:street"=>"Majorstuveien","cuisine"=>"spanish","email"=>"post@mistralcafe.no","opening_hours"=>"Mo-Tu 14:00-23:00; We-Fr 14:00-01:00; Sa 18:00-01:00; Su 14:00-23:00","phone"=>"+47 22461751","website"=>"http://www.mistralcafe.no"'}, +geometry:{type:"Point",coordinates:[10.7153658,59.9282926]}},{type:"Feature",properties:{osm_id:"2045401232",name:"Akersberget",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"22","addr:postcode"=>"0175","addr:street"=>"Maridalsveien","cuisine"=>"nordic","email"=>"post@akersberget.no","facebook"=>"http://www.facebook.com/akersberget","opening_hours"=>"Tu-Sa 17:00-24:00","phone"=>"+47 22209495","website"=>"http://akersberget.no/"'}, +geometry:{type:"Point",coordinates:[10.7503738,59.9241099]}},{type:"Feature",properties:{osm_id:"2045411162",name:"Posthallen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"8","addr:postcode"=>"0152","addr:street"=>"Prinsens gate","email"=>"info@posthallen.no","fax"=>"+47 22428201","opening_hours"=>"Mo-Fr 11:00-24:00; Sa 12:30-24:00","phone"=>"+47 22428200","website"=>"http://www.posthallen.no","wheelchair"=>"no"'}, +geometry:{type:"Point",coordinates:[10.7454281,59.9107301]}},{type:"Feature",properties:{osm_id:"2045418975",name:"Brasserie 45",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"20","addr:postcode"=>"0161","addr:street"=>"Stortingsgata","cuisine"=>"french","email"=>"post@brasserie45.no","level"=>"1","opening_hours"=>"Mo-Th 15:00-23:00; Fr-Sa 14:00-24:00; Su 14:00-22:00","phone"=>"+47 22413400","website"=>"http://www.brasserie45.no"'}, +geometry:{type:"Point",coordinates:[10.7348771,59.9135783]}},{type:"Feature",properties:{osm_id:"2045441425",name:"Savoia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1A","addr:postcode"=>"0257","addr:street"=>"Frognerveien","cuisine"=>"italian","email"=>"booking@savoia.no","phone"=>"+47 22554060","website"=>"http://www.savoia.no"'},geometry:{type:"Point",coordinates:[10.7176076, +59.9151294]}},{type:"Feature",properties:{osm_id:"2045457365",name:"Døgnvill Burger",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"13H","addr:postcode"=>"0178","addr:street"=>"Maridalsveien","alt_name"=>"Dögnvill Bar & Burger","cuisine"=>"burger","email"=>"post@dognvillburger.no","facebook"=>"https://www.facebook.com/DognvillBurger","opening_hours"=>"Mo-Th 12:00-24:00; Fr-Sa 12:00-01:00; Su 12:00-23:00","phone"=>"+47 21385010","twitter"=>"@DognvillBurger","website"=>"http://www.dognvillburger.no"'}, +geometry:{type:"Point",coordinates:[10.7515379,59.9217868]}},{type:"Feature",properties:{osm_id:"2045476602",name:"Bristol Grill",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"7","addr:postcode"=>"0164","addr:street"=>"Kristian IV\'s gate","opening_hours"=>"Mo-Sa 17:00-23:00; Su 17:00-22:00","phone"=>"+47 22826020","website"=>"http://www.thonhotels.no/hoteller/land/norge/oslo/bristol/mat-og-drikke/bristol-grill/"'}, +geometry:{type:"Point",coordinates:[10.7396565,59.9151888]}},{type:"Feature",properties:{osm_id:"2045487147",name:"Fauna",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0254","addr:street"=>"Solligata","email"=>"mail@restaurantfauna.no","opening_hours"=>"Tu-Sa 18:00-","operator"=>"Tavoy AS","phone"=>"+47 41674543","smoking"=>"no","website"=>"http://www.restaurantfauna.no/"'}, +geometry:{type:"Point",coordinates:[10.720591,59.91439]}},{type:"Feature",properties:{osm_id:"2046008740",name:"Smalhans",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"10","addr:postcode"=>"0171","addr:street"=>"Waldemar Thranes gate","email"=>"post@smalhans.no","facebook"=>"http://www.facebook.com/smalhans.oslo","opening_hours"=>"Tu-Fr 11:00-00:30; Sa-Su 10:00-00:30","phone"=>"+47 22696000","twitter"=>"@Smalhans_oslo","website"=>"http://www.smalhans.no"'}, +geometry:{type:"Point",coordinates:[10.7396477,59.9236741]}},{type:"Feature",properties:{osm_id:"2050908398",name:"Mathilda",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.fordehotel.no/index.php?side=6"'},geometry:{type:"Point",coordinates:[5.8506183,61.4499438]}},{type:"Feature",properties:{osm_id:"2054819617",name:"Holbergstuen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:housenumber"=>"6","addr:street"=>"Torgalmenningen","website"=>"http://www.holbergstuen.no/"'},geometry:{type:"Point",coordinates:[5.3247436,60.393082]}},{type:"Feature",properties:{osm_id:"2054819620",name:"Wesselstuen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.wesselstuen.no/","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[5.3216692,60.3919878]}},{type:"Feature", +properties:{osm_id:"2067261756",name:"Elvebredden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.1943445,59.7432241]}},{type:"Feature",properties:{osm_id:"2073435160",name:"Forest & Brown",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"phone"=>"22552680"'},geometry:{type:"Point",coordinates:[10.7148269,59.9167599]}},{type:"Feature", +properties:{osm_id:"2073435164",name:"Frogner Bistro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"french","website"=>"http://restaurantlanternen.no/frognerbistro/"'},geometry:{type:"Point",coordinates:[10.7134503,59.916532]}},{type:"Feature",properties:{osm_id:"2073723427",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"asian"'}, +geometry:{type:"Point",coordinates:[10.7441488,59.9168262]}},{type:"Feature",properties:{osm_id:"2076928814",name:"Japanese Dining Sato",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"japanese","email"=>"mail@japanesediningsato.no","website"=>"http://www.japanesediningsato.no/"'},geometry:{type:"Point",coordinates:[10.7147362,59.9162653]}},{type:"Feature",properties:{osm_id:"2082338213",name:"Smia",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[11.3162084,59.641244]}},{type:"Feature",properties:{osm_id:"2085240160",name:"Tasty Thai",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"51","addr:street"=>"Thereses gate","cuisine"=>"thai"'},geometry:{type:"Point",coordinates:[10.730409,59.9259528]}},{type:"Feature",properties:{osm_id:"2089686048", +name:"Companiet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[18.9577081,69.6500814]}},{type:"Feature",properties:{osm_id:"2089686051",name:"Fiskekompaniet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[18.9601247,69.6500374]}},{type:"Feature",properties:{osm_id:"2089686063", +name:"Kaia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[18.9599994,69.6509363]}},{type:"Feature",properties:{osm_id:"2089686066",name:"Lotus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sushi"'},geometry:{type:"Point",coordinates:[18.9599778,69.6506955]}},{type:"Feature",properties:{osm_id:"2089686070", +name:"Pastafabriken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[18.9588154,69.6497741]}},{type:"Feature",properties:{osm_id:"2089686074",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[18.9593528,69.6509757]}},{type:"Feature",properties:{osm_id:"2089686078", +name:"Steakers",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[18.9605315,69.6498641]}},{type:"Feature",properties:{osm_id:"2090110790",name:"Olsen Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.7180747,59.9198358]}},{type:"Feature",properties:{osm_id:"2090986189",name:null,barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"guest_house"'},geometry:{type:"Point",coordinates:[7.6793243,62.8928582]}},{type:"Feature",properties:{osm_id:"2091257756",name:"Argent",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1","addr:postcode"=>"0150","addr:street"=>"Kirsten Flagstads plass","alt_name"=>"Argent Fine Dining","cuisine"=>"international","email"=>"post@opera-huset.no","fax"=>"+47 21422143","opening_hours"=>"Mo-Sa 16:00-21:00","phone"=>"+47 21422142","website"=>"http://www.argentfinedining.no/"'}, +geometry:{type:"Point",coordinates:[10.7528822,59.9078579]}},{type:"Feature",properties:{osm_id:"2091259543",name:"Sanguine",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"1","addr:postcode"=>"0150","addr:street"=>"Kirsten Flagstads plass","alt_name"=>"Brasserie Sanguine","email"=>"post@opera-huset.no","fax"=>"+47 21422143","opening_hours"=>"Mo-Sa 11:00-21:00; Su 12:00-20:00","phone"=>"+47 21422142","website"=>"http://www.brasseriesanguine.no/"'}, +geometry:{type:"Point",coordinates:[10.7524209,59.9071987]}},{type:"Feature",properties:{osm_id:"2091308347",name:"Dinner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"22","addr:postcode"=>"0161","addr:street"=>"Stortingsgata","alt_name"=>"Dinner Bar & Restaurant","cuisine"=>"chinese","email"=>"dinner@dinner.no","fax"=>"+47 23100465","level"=>"1","opening_hours"=>"Mo-Sa 11:00-02:00; Su 15:30-01:00","phone"=>"+47 23100466","website"=>"http://www.dinner.no/"'}, +geometry:{type:"Point",coordinates:[10.7346482,59.9138036]}},{type:"Feature",properties:{osm_id:"2091610740",name:"Tang's Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[18.9582397,69.648972]}},{type:"Feature",properties:{osm_id:"2091610996",name:"69°",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[18.956832,69.6500951]}},{type:"Feature",properties:{osm_id:"2093888652",name:"Golden moon house",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","phone"=>"51894190"'},geometry:{type:"Point",coordinates:[5.7340593,58.9712729]}},{type:"Feature",properties:{osm_id:"2094150213",name:"China House",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[5.7335199,58.9719641]}},{type:"Feature",properties:{osm_id:"2094150214",name:"Emilios tapasbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"spanish"'},geometry:{type:"Point",coordinates:[5.734543,58.9714881]}},{type:"Feature",properties:{osm_id:"2097363657",name:"Fjoset pub",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"website"=>"http://www.nordalturistsenter.no/fjoset_pub.htm"'},geometry:{type:"Point",coordinates:[8.5697928,61.8384611]}},{type:"Feature",properties:{osm_id:"2105658845",name:"Madras",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.3947524,63.4333474]}},{type:"Feature",properties:{osm_id:"2106429634",name:"Fredriks Pub", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"34","addr:postcode"=>"2830","addr:street"=>"Storgata","website"=>"https://www.facebook.com/pages/FREDRIKS-PUB/325200511272?ref=ts&fref=ts"'},geometry:{type:"Point",coordinates:[10.6137667,60.7262634]}},{type:"Feature",properties:{osm_id:"2106437032",name:"Verona Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:housenumber"=>"34","addr:postcode"=>"2830","addr:street"=>"Storgata","cuisine"=>"international","website"=>"https://www.facebook.com/pages/Verona-Restaurant-Raufoss/285616888758"'},geometry:{type:"Point",coordinates:[10.6136862,60.7262739]}},{type:"Feature",properties:{osm_id:"2109481196",name:"Shang Hai Resaurant AS",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point", +coordinates:[30.0388825,69.72804640000001]}},{type:"Feature",properties:{osm_id:"2110522805",name:"Tandoori Hut",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.7557956,59.9375271]}},{type:"Feature",properties:{osm_id:"2110681596",name:"Hr. Direktør Restaurant & Sportsbar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:'"addr:housename"=>"Butikkhuset","addr:postcode"=>"4700","website"=>"http://www.direktor.no/","wifi"=>"free"'},geometry:{type:"Point",coordinates:[7.9719379,58.2699751]}},{type:"Feature",properties:{osm_id:"2110714812",name:"Escalon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"spanish"'},geometry:{type:"Point",coordinates:[10.7217038,59.9085229]}},{type:"Feature",properties:{osm_id:"2110729411",name:"Habibi junior", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"26","addr:postcode"=>"0184","addr:street"=>"Storgaten","opening_hours"=>"Man.-lør.: 13.00-01.00 Mon-Sat: 1 pm-1 am","phone"=>"+49 22170201","url"=>"www.habibi.no","website"=>"www.habibi.no"'},geometry:{type:"Point",coordinates:[10.7506022,59.9133964]}},{type:"Feature",properties:{osm_id:"2110732508",name:"Habibi Takeaway",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"14","addr:postcode"=>"0184","addr:street"=>"Storgaten","cuisine"=>"kebab","website"=>"www.habibi.no"'},geometry:{type:"Point",coordinates:[10.750629,59.9135874]}},{type:"Feature",properties:{osm_id:"2110844535",name:"Furebuda",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.3198965,62.1197917]}}, +{type:"Feature",properties:{osm_id:"2113106269",name:"Pss catering",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.1099637,62.5005695]}},{type:"Feature",properties:{osm_id:"2114218292",name:"Mormors Stue",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"food"=>"yes","outdoor_seating"=>"yes"'},geometry:{type:"Point",coordinates:[10.395094, +63.4327331]}},{type:"Feature",properties:{osm_id:"2128905718",name:"Samson",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.501425,59.7796335]}},{type:"Feature",properties:{osm_id:"2131215716",name:"Taste of India",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"44","addr:street"=>"Kirkegata","cuisine"=>"indian"'}, +geometry:{type:"Point",coordinates:[5.7322614,58.9725975]}},{type:"Feature",properties:{osm_id:"2153218701",name:"Aurora",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[14.379594,67.2843289]}},{type:"Feature",properties:{osm_id:"2153218775",name:"Café Du Verden",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[14.3798324,67.2844221]}},{type:"Feature",properties:{osm_id:"2153218823",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[14.3778476,67.28393840000001]}},{type:"Feature",properties:{osm_id:"2160774624",name:"The Match Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[14.3799522,67.2830491]}},{type:"Feature",properties:{osm_id:"2160774650",name:"Svengård's",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[14.3801024,67.28307190000001]}},{type:"Feature",properties:{osm_id:"2175766253",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[12.3543075, +66.3704342]}},{type:"Feature",properties:{osm_id:"2181302042",name:"Elmer's pub & Biljard",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"2","addr:postcode"=>"0565","addr:street"=>"Hammerfestgata","alt_name"=>"Elmer\'s","website"=>"http://www.elmerspub.no/"'},geometry:{type:"Point",coordinates:[10.7742193,59.9246756]}},{type:"Feature",properties:{osm_id:"2181335078",name:"Albertine Indisk Tandoori",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"3B","addr:postcode"=>"0170","addr:street"=>"Hallings gate","cuisine"=>"indian","old_name"=>"Albertine","website"=>"http://albertine-indisk.no/"'},geometry:{type:"Point",coordinates:[10.7390631,59.9223963]}},{type:"Feature",properties:{osm_id:"2181346709",name:"Restaurant Mother India",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:'"addr:housenumber"=>"63","addr:postcode"=>"0350","addr:street"=>"Pilestredet","alt_name"=>"Mother India","cuisine"=>"indian","website"=>"http://www.mother-india.no/"'},geometry:{type:"Point",coordinates:[10.7310892,59.9238852]}},{type:"Feature",properties:{osm_id:"2181352341",name:"Da Lat Café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"27","addr:postcode"=>"0183","addr:street"=>"Torggata","cuisine"=>"vietnamese"'}, +geometry:{type:"Point",coordinates:[10.7533879,59.9167907]}},{type:"Feature",properties:{osm_id:"2183277049",name:"Ricebowl",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"4","addr:postcode"=>"0181","addr:street"=>"Youngs gate","cuisine"=>"thai","website"=>"http://www.ricebowl.no/"'},geometry:{type:"Point",coordinates:[10.7510369,59.9145706]}},{type:"Feature",properties:{osm_id:"2183282943",name:"Curry & Ketchup", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"51","addr:postcode"=>"0368","addr:street"=>"Kirkeveien","cuisine"=>"indian"'},geometry:{type:"Point",coordinates:[10.713837,59.9276882]}},{type:"Feature",properties:{osm_id:"2183294113",name:"Restaurant Dehli Tandoori",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"4","addr:postcode"=>"0178","addr:street"=>"Maridalsveien","cuisine"=>"indian","website"=>"http://www.rdtandoori.com/"'}, +geometry:{type:"Point",coordinates:[10.7512177,59.9196347]}},{type:"Feature",properties:{osm_id:"2185888673",name:"barila pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[23.2742163,69.96683080000001]}},{type:"Feature",properties:{osm_id:"2192334011",name:"Saigon Lille Café",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"32","addr:postcode"=>"0179","addr:street"=>"Møllergata","cuisine"=>"vietnamese"'}, +geometry:{type:"Point",coordinates:[10.7501633,59.9170209]}},{type:"Feature",properties:{osm_id:"2192347202",name:" Taste Of China",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"18","addr:postcode"=>"0181","addr:street"=>"Torggata","cuisine"=>"chinese","website"=>"http://www.tasteofchina.no/"'},geometry:{type:"Point",coordinates:[10.7513704,59.9160428]}},{type:"Feature",properties:{osm_id:"2192380542",name:"Xich Lo", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"23B","addr:postcode"=>"0159","addr:street"=>"Karl Johans gate","cuisine"=>"vietnamese","website"=>"http://www.xichlo.no/"'},geometry:{type:"Point",coordinates:[10.741569,59.9131022]}},{type:"Feature",properties:{osm_id:"2192480091",name:"Store Stå Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"51","addr:postcode"=>"0354","addr:street"=>"Thereses gate","website"=>"http://www.storesta.no/"'}, +geometry:{type:"Point",coordinates:[10.7306881,59.9257453]}},{type:"Feature",properties:{osm_id:"2192619453",name:"Pizza Pancetta",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"6","addr:postcode"=>"0482","addr:street"=>"Grefsenveien","cuisine"=>"italian","website"=>"http://pancetta.no/"'},geometry:{type:"Point",coordinates:[10.770995,59.9416948]}},{type:"Feature",properties:{osm_id:"2193755584",name:"Pizza Pasta Sentralen", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[5.2690252,59.4137824]}},{type:"Feature",properties:{osm_id:"2196380412",name:"Sakana Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"2","addr:postcode"=>"0152","addr:street"=>"Prinsens gate","cuisine"=>"japanese","opening_hours"=>"Mo-Fr 11:00-20:00; Sa 12:00-20:00","phone"=>"+47 22 42 67 50"'}, +geometry:{type:"Point",coordinates:[10.7480912,59.9101074]}},{type:"Feature",properties:{osm_id:"2229475097",name:"Hafjell Fjøset",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"opening_hours"=>"Fr-Sa 18:00-03:00","phone"=>"+47 92400799","website"=>"http://www.hafjellfjoset.no"'},geometry:{type:"Point",coordinates:[10.4394432,61.2408609]}},{type:"Feature",properties:{osm_id:"2229475102",name:"Hafjell Pizza Drive & Restaurant",barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza","opening_hours"=>"Mo-Th 15:00-22:00; Fr 15:00-23:00; Sa 13:00-23:00; Su 13:00-22:00","phone"=>"+47 61278150","website"=>"http://www.hafjellpizza.no"'},geometry:{type:"Point",coordinates:[10.4392683,61.24061]}},{type:"Feature",properties:{osm_id:"2232350393",name:"Skuta",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[9.1955337,63.5692859]}},{type:"Feature",properties:{osm_id:"2235212272",name:"Noodles",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"90","addr:postcode"=>"0255","addr:street"=>"Henrik Ibsens gate","cuisine"=>"japanese","email"=>"post@noodles-norway.com","facebook"=>"http://www.facebook.com/pages/Noodles-norway/127381540770844","opening_hours"=>"Mo-Th 11:00-21:00; Fr 11:00-03:30; Sa 12:00-03:30; Su 12:00-21:00","phone"=>"+47 92019012","website"=>"http://noodles-norway.com"'}, +geometry:{type:"Point",coordinates:[10.719384,59.9146325]}},{type:"Feature",properties:{osm_id:"2248480444",name:"Vertshuset Sinclair",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Sa 07:00 - 03:30","tourism"=>"motel"'},geometry:{type:"Point",coordinates:[9.7010574,61.6658459]}},{type:"Feature",properties:{osm_id:"2258318305",name:"Bella Italia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null, +man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"italian"'},geometry:{type:"Point",coordinates:[6.414806,60.6289893]}},{type:"Feature",properties:{osm_id:"2260251551",name:"Maki & Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.5872789,59.9164714]}},{type:"Feature",properties:{osm_id:"2260253822",name:"Kinesisk restaurant",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[10.5866781,59.9181331]}},{type:"Feature",properties:{osm_id:"2260263296",name:"Bekkestuene bar og restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.5865762,59.9165601]}},{type:"Feature",properties:{osm_id:"2260263651", +name:"Pizzanini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.586603,59.9164176]}},{type:"Feature",properties:{osm_id:"2260306150",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.5256451,59.8920728]}},{type:"Feature",properties:{osm_id:"2260308582", +name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.5245937,59.8909049]}},{type:"Feature",properties:{osm_id:"2260311072",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.5236925,59.8910233]}},{type:"Feature",properties:{osm_id:"2260312248",name:null,barrier:null, +highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.5257524,59.8910556]}},{type:"Feature",properties:{osm_id:"2260318280",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"limited"'},geometry:{type:"Point",coordinates:[10.5223192,59.8893656]}},{type:"Feature",properties:{osm_id:"2260318703",name:null, +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[10.5226303,59.8892687]}},{type:"Feature",properties:{osm_id:"2260347620",name:"Ostøya golfclub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.580722,59.8688074]}},{type:"Feature",properties:{osm_id:"2262765687", +name:"Bugatti",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4410324,63.4240624]}},{type:"Feature",properties:{osm_id:"2263337380",name:"Punjabi Masala",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"63D","addr:postcode"=>"0350","addr:street"=>" Pilestredet","cuisine"=>"indian","website"=>"http://punjabi-masala.no/"'}, +geometry:{type:"Point",coordinates:[10.7310173,59.9241757]}},{type:"Feature",properties:{osm_id:"2264296897",name:"Brygga 11, Geir Skeie",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"seafood","email"=>"stord@brygga11.no","phone"=>"+4795555758","website"=>"http://www.brygga11.no/"'},geometry:{type:"Point",coordinates:[5.5018584,59.779839]}},{type:"Feature",properties:{osm_id:"2272981675",name:"Panda",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housename"=>"Bjerke Panorama","addr:housenumber"=>"88","addr:postcode"=>"0586","addr:street"=>"Økern Torgvei","cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[10.8073364,59.9420096]}},{type:"Feature",properties:{osm_id:"2275948724",name:"Lille London",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"opening_hours"=>"Mo-Sa 11:00-02:00; Su 12:00-02:00","website"=>"http://wp.lillelondon.no/"'}, +geometry:{type:"Point",coordinates:[10.3982031,63.4339777]}},{type:"Feature",properties:{osm_id:"2275981490",name:"Afro Friends",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"african"'},geometry:{type:"Point",coordinates:[10.4148944,63.4344879]}},{type:"Feature",properties:{osm_id:"2278287823",name:"Myrens Kjøkken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[10.759238,59.9348021]}},{type:"Feature",properties:{osm_id:"2284901715",name:"Mehfel",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"15","addr:postcode"=>"0153","addr:street"=>"Kirkegata","email"=>"post@mehfel.no","opening_hours"=>"Mo-Sa 16:00-23:00; Su 16:00-22:00","phone"=>"+47 22423777","website"=>"http://www.mehfel.no/"'}, +geometry:{type:"Point",coordinates:[10.7434436,59.9102462]}},{type:"Feature",properties:{osm_id:"2284940360",name:"Palace Grill",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"2","addr:postcode"=>"0254","addr:street"=>"Solligata","fax"=>"+47 23131142","opening_hours"=>"Mo-Su 15:00-","phone"=>"+47 23131140","website"=>"http://palacegrill.no/restauranten/"'},geometry:{type:"Point", +coordinates:[10.7204106,59.9142824]}},{type:"Feature",properties:{osm_id:"2284961002",name:"Monsun",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"23D","addr:postcode"=>"0567","addr:street"=>"Dælenenggata","cuisine"=>"asian","email"=>"post@monsunrestaurant.no","opening_hours"=>"Tu-Su 13:00-22:00","phone"=>"+47 46770046","website"=>"http://monsunrestaurant.no/"'},geometry:{type:"Point", +coordinates:[10.7712503,59.9272736]}},{type:"Feature",properties:{osm_id:"2285449946",name:"Son Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.6857366,59.5229785]}},{type:"Feature",properties:{osm_id:"2285776882",name:"Enhjørningen Fiskerestaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"29","addr:postcode"=>"5003","addr:street"=>"Enhjørningsgården","contact:phone"=>"+47 55 306950","website"=>"http://www.enhjorningen.no"'}, +geometry:{type:"Point",coordinates:[5.323496,60.3971672]}},{type:"Feature",properties:{osm_id:"2286111613",name:"Maki",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"5","addr:postcode"=>"6004","addr:street"=>"Apotekergata","wheelchair"=>"yes"'},geometry:{type:"Point",coordinates:[6.1522097,62.4720573]}},{type:"Feature",properties:{osm_id:"2290080607",name:"Macau",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point",coordinates:[5.7365373,58.8537872]}},{type:"Feature",properties:{osm_id:"2290080608",name:"Pastabakeriet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7351236,58.8516994]}},{type:"Feature",properties:{osm_id:"2290080610",name:"Charles & De",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"41","addr:street"=>"Langgata","cuisine"=>"international"'},geometry:{type:"Point",coordinates:[5.7363896,58.8530465]}},{type:"Feature",properties:{osm_id:"2290143204",name:"Fish & Cow",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.7321065,58.9702354]}},{type:"Feature",properties:{osm_id:"2290143208", +name:"Restaurant Renaa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housename"=>"Breitorget","addr:housenumber"=>"6","addr:postcode"=>"4006","addr:street"=>"Breitorget","website"=>"http://www.restaurantrenaa.no"'},geometry:{type:"Point",coordinates:[5.7334636,58.9718213]}},{type:"Feature",properties:{osm_id:"2290547782",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub", +other_tags:null},geometry:{type:"Point",coordinates:[9.2395374,58.7189303]}},{type:"Feature",properties:{osm_id:"2291530274",name:"Brasserie Mares",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"1","addr:postcode"=>"0257","addr:street"=>"Skovveien","brand"=>"Mares","contact:email"=>"mares@mares.no","cuisine"=>"seafood","fax"=>"+47 22548985","opening_hours"=>"Mo-Fr 11:00-15:00,17:00-00:30; Sa 11:00-16:00, 17:00-00:30","phone"=>"+47 22548980","smoking"=>"no","website"=>"http://www.mares.no"'}, +geometry:{type:"Point",coordinates:[10.715838,59.915674]}},{type:"Feature",properties:{osm_id:"2296761490",name:"Thranestua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://blaa.no/Artikkel/Spisesteder/Thranestua/10002733.php"'},geometry:{type:"Point",coordinates:[9.8837659,59.9133104]}},{type:"Feature",properties:{osm_id:"2296767711",name:"Styrmanden",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:'"addr:housename"=>"Abelvær Gård","addr:postcode"=>"7950","website"=>"www.abelvaer.com","wifi"=>"yes"'},geometry:{type:"Point",coordinates:[11.1834919,64.731531]}},{type:"Feature",properties:{osm_id:"2296947498",name:"Viva Italia",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Trondheim","addr:housenumber"=>"137","addr:postcode"=>"7048","addr:street"=>"Jonsvannsveien","cuisine"=>"italian","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.4450033,63.410183]}},{type:"Feature",properties:{osm_id:"2297963828",name:"Delhi India Tandori",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Sandnes","addr:housenumber"=>"4","addr:postcode"=>"4307","addr:street"=>"Kirkegata","cuisine"=>"indian","website"=>"http://www.delhi.no/"'},geometry:{type:"Point",coordinates:[5.7353623,58.8522819]}},{type:"Feature",properties:{osm_id:"2299357106", +name:"Ni&Tyve",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:country"=>"NO","addr:housenumber"=>"29","addr:postcode"=>"0350","addr:street"=>"Parkveien","email"=>"post@niogtyve.no","facebook"=>"http://www.facebook.com/#!/pages/Oslo-Norway/Restaurant-NiTyve/145188805499642?ref=ts","fax"=>"+47 22068661","opening_hours"=>"Mo-Fr 17:00-24:00; Sa 13:00-17:00, 18:00-24:00","phone"=>"+47 22068660","website"=>"http://niogtyve.no/"'}, +geometry:{type:"Point",coordinates:[10.7272532,59.9203901]}},{type:"Feature",properties:{osm_id:"2309697789",name:"Sushi Adamstuen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"95","addr:postcode"=>"0454","addr:street"=>"Ullevålsveien","cuisine"=>"sushi","delivery"=>"no","internet_access"=>"no","opening_hours"=>"Mo-Fr 11:00-21:00; Sa-Su 13:00-21:00","outdoor_seating"=>"no","phone"=>"+47 22960096","smoking"=>"no","takeaway"=>"yes","website"=>"http://www.sushiadamstuen.no/","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.733549,59.932807]}},{type:"Feature",properties:{osm_id:"2313471147",name:"Sundets Skaldjurscafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.00787,58.8913639]}},{type:"Feature",properties:{osm_id:"2313486632",name:"Hotell Ekenäs",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[11.0463865,58.8951109]}},{type:"Feature",properties:{osm_id:"2313486633",name:"Kosters rökeri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.kostersrokeri.se"'},geometry:{type:"Point",coordinates:[11.0480173,58.893182]}},{type:"Feature",properties:{osm_id:"2320094752",name:"Parkkaféen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.4667893,61.112249]}},{type:"Feature",properties:{osm_id:"2328466742",name:"Hai Cafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"6","addr:postcode"=>"0183","addr:street"=>"Calmeyers gate","cuisine"=>"vietnamese","phone"=>"+47 22203872"'},geometry:{type:"Point",coordinates:[10.7530485,59.9158617]}},{type:"Feature", +properties:{osm_id:"2337748623",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.681176,63.4429957]}},{type:"Feature",properties:{osm_id:"2347395829",name:"Sushi Deluxe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"157","addr:postcode"=>"0465","addr:street"=>"Maridalsveien","cuisine"=>"japanese","opening_hours"=>"Mo-Su 13:00-21:00","phone"=>"+47 41103400","website"=>"http://www.sushideluxe.no/"'}, +geometry:{type:"Point",coordinates:[10.7569315,59.9381212]}},{type:"Feature",properties:{osm_id:"2348009453",name:"La Casa Café & Spiseri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"1","addr:postcode"=>"0465","addr:street"=>"Bentsegata","cuisine"=>"spanish","opening_hours"=>"Mo-Su 14:00-23:30","phone"=>"+47 22232233","website"=>"http://www.la-casa.no/"'},geometry:{type:"Point",coordinates:[10.7565843, +59.9378153]}},{type:"Feature",properties:{osm_id:"2348090407",name:"Sagene Pizzaria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"3","addr:postcode"=>"0463","addr:street"=>"Arendalsgata","cuisine"=>"pizza","phone"=>"+47 22371897"'},geometry:{type:"Point",coordinates:[10.7552354,59.9374469]}},{type:"Feature",properties:{osm_id:"2348123125",name:"Mm Sushi",barrier:null,highway:null,ref:null, +address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"2B","addr:postcode"=>"0452","addr:street"=>"Brageveien","cuisine"=>"japanese","phone"=>"+47 22699099"'},geometry:{type:"Point",coordinates:[10.7339915,59.9309839]}},{type:"Feature",properties:{osm_id:"2348377132",name:"Haukåsløypa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"alt_name"=>"Haukåsbakken","cuisine"=>"waffle;coffee","sport"=>"skiing"'}, +geometry:{type:"Point",coordinates:[10.185249,59.732802]}},{type:"Feature",properties:{osm_id:"2353469917",name:"Narvik Bowling",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Narvik","addr:country"=>"NO","addr:housenumber"=>"15","addr:postcode"=>"8517","addr:street"=>"Frydenlundgata","opening_hours"=>"Mo-Th 11:00-24:00; Fr-Sa 11:00-01:00; Su 12:00-24:00","sport"=>"10pin","website"=>"http://www.narvikbowling.no/"'},geometry:{type:"Point", +coordinates:[17.4215575,68.4400641]}},{type:"Feature",properties:{osm_id:"2353875636",name:"Bakgården",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.5252528,59.8904343]}},{type:"Feature",properties:{osm_id:"2355901941",name:"Keiser Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese"'},geometry:{type:"Point", +coordinates:[5.5004806,59.7795292]}},{type:"Feature",properties:{osm_id:"2360793927",name:"Pizza Planet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.5008543,59.778268]}},{type:"Feature",properties:{osm_id:"2362900551",name:"Café Lyon",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"38C","addr:postcode"=>"0557","addr:street"=>"Sannergata","phone"=>"+47 22372010","website"=>"http://home.online.no/~ibraimi/index.cfm"'}, +geometry:{type:"Point",coordinates:[10.7668366,59.9288339]}},{type:"Feature",properties:{osm_id:"2362929824",name:"Nam Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"28","addr:postcode"=>"0557","addr:street"=>"Sannergata","cuisine"=>"japanese","opening_hours"=>"Mo-Su 13:00-21:00","phone"=>"+47 22380888","website"=>"http://namsushi.no/"'},geometry:{type:"Point",coordinates:[10.7646318, +59.9287519]}},{type:"Feature",properties:{osm_id:"2365980494",name:"Sushi Number One",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"75","addr:postcode"=>"0175","addr:street"=>"Waldemar Thranes gate","cuisine"=>"sushi","opening_hours"=>"Mo-Fr 10:00-21:00; Sa-Su 13:00-21:00","phone"=>"+47 46244364","website"=>"http://www.sushinumberone.no/"'},geometry:{type:"Point",coordinates:[10.7535905, +59.9280265]}},{type:"Feature",properties:{osm_id:"2367294457",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[16.5899763,68.6253686]}},{type:"Feature",properties:{osm_id:"2367296974",name:"Rødbrygga",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.295885,63.8708973]}}, +{type:"Feature",properties:{osm_id:"2371362255",name:"Cafe Dublin",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[10.3925933,63.430405]}},{type:"Feature",properties:{osm_id:"2372711482",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[6.8419084,60.880829]}},{type:"Feature", +properties:{osm_id:"2373552598",name:"Blestua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"name:no"=>"Blestua","official_name"=>"Blestua","source_id"=>"70514","source:name"=>"Kartverket","source_ref"=>"http://faktaark.statkart.no/SSRFakta/faktaarkfraobjektid?enhet=70514"'},geometry:{type:"Point",coordinates:[9.415336,59.790233]}},{type:"Feature",properties:{osm_id:"2379568232",name:"Docile Kontor & Pub",barrier:null,highway:null, +ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:housenumber"=>"3","addr:street"=>"kirkegata","sport"=>"football;edart"'},geometry:{type:"Point",coordinates:[11.0683834,60.7957097]}},{type:"Feature",properties:{osm_id:"2380433349",name:"Fotobrygga",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[14.6617855,68.1669352]}},{type:"Feature",properties:{osm_id:"2387361342", +name:"Trubaduren pub og bistro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"entrance"=>"yes","opening_hours"=>"Tu 11:00-15:00; We 11:00-15:00; We 20:00-24:00; Th 11:00-15:00; Th 20:00-24:00; Fr 11:00-15:00; Fr 22:00-02:00; Sa 12:00-14:00; Sa 22:00-02:00","phone"=>"+47 75 75 09 60","website"=>"http://www.neverdal.info/index.php?p=1_8_trubaduren-pub-og-bistro"'},geometry:{type:"Point",coordinates:[13.7747209,66.8344282]}},{type:"Feature", +properties:{osm_id:"2387545574",name:"Gaiastova",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Øyer","addr:country"=>"NO","addr:housenumber"=>"250","addr:postcode"=>"2636","addr:street"=>"Lunnstadmyrvegen","email"=>"post@gaiastova.no","fax"=>"+47 61 05 62 81","phone"=>"+47 61 05 62 80","website"=>"www.gaiastova.no"'},geometry:{type:"Point",coordinates:[10.5121453,61.226375]}},{type:"Feature",properties:{osm_id:"2387762825", +name:"Fellini Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[14.5665125,67.2897365]}},{type:"Feature",properties:{osm_id:"2387767472",name:"Pizzabakeren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:street"=>"Mørkvedsenteret","cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[14.5677677, +67.2892521]}},{type:"Feature",properties:{osm_id:"2392586687",name:"Maemo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"delivery"=>"no","outdoor_seating"=>"no","smoking"=>"no"'},geometry:{type:"Point",coordinates:[10.760311,59.910381]}},{type:"Feature",properties:{osm_id:"2392587369",name:"Sushi deluxe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sushi","outdoor_seating"=>"yes","smoking"=>"outside"'}, +geometry:{type:"Point",coordinates:[10.761384,59.910373]}},{type:"Feature",properties:{osm_id:"2393065511",name:"Lamphongs thairestaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"thai","website"=>"http://thairestaurant.no"'},geometry:{type:"Point",coordinates:[7.1656743,62.7381223]}},{type:"Feature",properties:{osm_id:"2396738746",name:"Milano Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:postcode"=>"6390","cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[7.092211,62.6234568]}},{type:"Feature",properties:{osm_id:"2398307867",name:"Bocca",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.1528747,62.47112]}},{type:"Feature",properties:{osm_id:"2398307872",name:"Anno",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[6.151352,62.4713735]}},{type:"Feature",properties:{osm_id:"2402924706",name:"City Bar & Diner",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[16.544394,68.79990020000001]}},{type:"Feature",properties:{osm_id:"2405598981",name:"Styrhuset pub",barrier:null,highway:null,ref:null,address:null, +is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"opening_hours"=>"Su-Th 19:00-01:00; Fr-Sa 18:00-02:30"'},geometry:{type:"Point",coordinates:[14.5645944,68.23141360000001]}},{type:"Feature",properties:{osm_id:"2408917756",name:"SLM Oslo",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"addr:full"=>"Entrance from Nedre Slottsgate","addr:housenumber"=>"28","addr:street"=>"Rådhusgata","fetish:bdsm"=>"yes","fetish:bears"=>"yes","fetish:leather"=>"yes","fetish:rubber"=>"yes","fetish:uniform"=>"yes","floor"=>"0","gay:men"=>"only","minage"=>"18","smoking"=>"isolated","smoking:note"=>"No smoking indoors or on the street. Smoking area in back yard","smoking:outside"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.7402467,59.9096038]}},{type:"Feature",properties:{osm_id:"2409734551",name:"Kafe Kjelen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[14.6219237,67.2285566]}},{type:"Feature",properties:{osm_id:"2411042581",name:"Knarren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[9.0791605,63.6634833]}},{type:"Feature",properties:{osm_id:"2411841295",name:"Kroæ Træna",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[12.1010339,66.5007503]}},{type:"Feature",properties:{osm_id:"2412022288",name:"Kvenværstua",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point", +coordinates:[8.3889928,63.5336222]}},{type:"Feature",properties:{osm_id:"2420992558",name:"Kjøkken Kroken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[8.5501527,60.8638136]}},{type:"Feature",properties:{osm_id:"2421023212",name:"Lysefjordsenteret",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Forsand","addr:country"=>"NO","addr:postcode"=>"4110","cuisine"=>"regional","email"=>"info@lysefjordsenteret.no","fax"=>"+47 5170 3661","phone"=>"+47 5170 3660","website"=>"http://www.lysefjordsenteret.no"'}, +geometry:{type:"Point",coordinates:[6.0785189,58.911741]}},{type:"Feature",properties:{osm_id:"2422145752",name:"Peppes Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[8.5524376,60.8625294]}},{type:"Feature",properties:{osm_id:"2422145753",name:"Bar(t)",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null}, +geometry:{type:"Point",coordinates:[8.5524735,60.8626913]}},{type:"Feature",properties:{osm_id:"2422145756",name:"T-kroken",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.5498954,60.8637497]}},{type:"Feature",properties:{osm_id:"2425959830",name:"Fellini",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza;kebab"'}, +geometry:{type:"Point",coordinates:[5.7289036,59.0036532]}},{type:"Feature",properties:{osm_id:"2436841558",name:"Victoria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.3304158,60.3933469]}},{type:"Feature",properties:{osm_id:"2439698258",name:"Marché Solli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Greåker","addr:country"=>"NO","addr:housenumber"=>"276","addr:postcode"=>"1719","addr:street"=>"Solliveien","cuisine"=>"regional","email"=>"solli@marche-restaurants.com","internet_access"=>"wlan","internet_access:fee"=>"no","opening_hours"=>"Mo-Fr 08:00-21:00; Sa 08:00-20:00; Su 10:00-21:00","operator"=>"Marché","phone"=>"+4769147304","website"=>"http://www.marche-restaurants.com/no/marche-solli","wheelchair"=>"yes"'}, +geometry:{type:"Point",coordinates:[10.9552576,59.3242593]}},{type:"Feature",properties:{osm_id:"2449533403",name:"Alfredo Rossi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"HORTEN","addr:housenumber"=>"3","addr:street"=>"Torggata","cuisine"=>"italian","drive_in"=>"no","takeaway"=>"yes","website"=>"http://alfredorossi.no/"'},geometry:{type:"Point",coordinates:[10.482347,59.417523]}},{type:"Feature",properties:{osm_id:"2449565275", +name:"Himalaya Tandori",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"HORTEN","addr:housenumber"=>"9","addr:street"=>"Strandpromenaden","cuisine"=>"indian","drive_in"=>"no","takeaway"=>"yes","website"=>"http://www.himalaya-tandori.com/"'},geometry:{type:"Point",coordinates:[10.48619,59.414131]}},{type:"Feature",properties:{osm_id:"2455554522",name:"Melkebaren",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.7358876,58.8532896]}},{type:"Feature",properties:{osm_id:"2455554525",name:"Megleren",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[5.7357035,58.8531806]}},{type:"Feature",properties:{osm_id:"2455554528",name:"No 28 Pizza",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"addr:housenumber"=>"1","addr:street"=>"Industrigata","cuisine"=>"pizza"'},geometry:{type:"Point",coordinates:[5.7357793,58.8533404]}},{type:"Feature",properties:{osm_id:"2455556890",name:"Big Bite",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"sandwich"'},geometry:{type:"Point",coordinates:[5.7384585,58.8516129]}},{type:"Feature",properties:{osm_id:"2455581233",name:"Ibsens Fish & Chips", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"fish_and_chips"'},geometry:{type:"Point",coordinates:[5.7381343,58.8504765]}},{type:"Feature",properties:{osm_id:"2456497506",name:"Trans Sushi",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"51B","addr:postcode"=>"0350","addr:street"=>"Pilestredet","cuisine"=>"sushi","opening_hours"=>"Mo-Fr 11:00-22:00; Sa-Su 13:00-22:00","phone"=>"+47 22 60 88 00"'}, +geometry:{type:"Point",coordinates:[10.732103,59.9216607]}},{type:"Feature",properties:{osm_id:"2457867224",name:"Spiseriet",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.spiseriet.no/"'},geometry:{type:"Point",coordinates:[5.7235553,58.9752722]}},{type:"Feature",properties:{osm_id:"2458105904",name:"Haven Restaurant og Bar",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null, +amenity:"restaurant",other_tags:'"website"=>"http://haven-restaurant.no/"'},geometry:{type:"Point",coordinates:[9.4119023,58.8675943]}},{type:"Feature",properties:{osm_id:"2458637044",name:"Friluftsenter Andøy",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Risøyhamn","addr:country"=>"NO","addr:postcode"=>"8484","addr:street"=>"Buksnesfjord","building"=>"yes","email"=>"firmapost@andoy-friluftssenter.no","fax"=>"+47 76 148804","phone"=>"+47 76 148804: +47 91 535180; +47 41 553756","website"=>"http://www.andoy-friluftssenter.no/index.php?option=com_content&view=article&id=98&Itemid=53"'}, +geometry:{type:"Point",coordinates:[15.6028062,68.8838879]}},{type:"Feature",properties:{osm_id:"2458637060",name:"Trollkafe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"tourism"=>"hotel"'},geometry:{type:"Point",coordinates:[20.2686291,69.3969804]}},{type:"Feature",properties:{osm_id:"2461518886",name:"St. Lars",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"45","addr:street"=>"Thereses gate","cuisine"=>"barbecue","phone"=>"+47 97061021","website"=>"http://www.stlars.no/"'}, +geometry:{type:"Point",coordinates:[10.7311069,59.9265322]}},{type:"Feature",properties:{osm_id:"2463208579",name:"Patrioten Bistro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:housenumber"=>"100","addr:postcode"=>"4016","addr:street"=>"Hillevågsveien","building"=>"entrance","cuisine"=>"regional","website"=>"http://www.patrioten.no/","wheelchair"=>"no"'},geometry:{type:"Point",coordinates:[5.7459869,58.9422343]}},{type:"Feature", +properties:{osm_id:"2463401897",name:"Kolonihagen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"25","addr:postcode"=>"0551","addr:street"=>"Korsgata","facebook"=>"http://www.facebook.com/Kolonihagengrunerlokka","phone"=>"+47 95968352","website"=>"http://www.kolonihagen.no"'},geometry:{type:"Point",coordinates:[10.7581408,59.9199943]}},{type:"Feature",properties:{osm_id:"2463407381",name:"Arakataka", +barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"7B","addr:postcode"=>"0183","addr:street"=>"Mariboes gate","cuisine"=>"regional","fax"=>"+47 23328301","opening_hours"=>"Mo-Th 16:00-22:00; Fr-Sa 16:00-23:00; Su 16:00-21:00","phone"=>"+47 23328300","website"=>"http://arakataka.no/"'},geometry:{type:"Point",coordinates:[10.7506523,59.9163268]}},{type:"Feature",properties:{osm_id:"2474354577", +name:"Haga vertshus",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[9.5918485,58.8651654]}},{type:"Feature",properties:{osm_id:"2475102760",name:"Café Skogn Stuene",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.1910156,63.7048404]}},{type:"Feature",properties:{osm_id:"2475102761", +name:"Skogn Pizza & Grill",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[11.1927828,63.7045271]}},{type:"Feature",properties:{osm_id:"2480952864",name:"Den lykkelige sportsmann",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[8.7485327,59.8786901]}},{type:"Feature",properties:{osm_id:"2484254221", +name:"+39",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"100","addr:postcode"=>"0270","addr:street"=>"Munkedamsveien","cuisine"=>"italian","email"=>"info@restaurant39.com","facebook"=>"http://www.facebook.com/restaurant39","phone"=>"+47 22562439","website"=>"http://restaurant39.com/"'},geometry:{type:"Point",coordinates:[10.7099864,59.9125988]}},{type:"Feature",properties:{osm_id:"2484288273", +name:"Asia Village",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Oslo","addr:housenumber"=>"9B","addr:postcode"=>"0257","addr:street"=>"Frognerveien","cuisine"=>"asian","email"=>"post@asiavillage.no","facebook"=>"http://www.facebook.com/AsiaVillageOfficial","opening_hours"=>"Mo-Sa 11:00-23:00; Su 12:00-23:00","phone"=>"+47 22200777","twitter"=>"@AsiaVillage","website"=>"http://asiavillage.no/"'},geometry:{type:"Point", +coordinates:[10.7156081,59.9163704]}},{type:"Feature",properties:{osm_id:"2491557968",name:"Skikroa",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[7.3487764,59.5687527]}},{type:"Feature",properties:{osm_id:"2493393237",name:"Michelsen",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.3260594, +60.3915435]}},{type:"Feature",properties:{osm_id:"2493501601",name:"Shanghai Kobe",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","name:cn"=>"上海 神戸"'},geometry:{type:"Point",coordinates:[5.3264498,60.3969761]}},{type:"Feature",properties:{osm_id:"2498131477",name:"Ming",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"chinese","website"=>"www.mingrestaurant.no"'}, +geometry:{type:"Point",coordinates:[10.6590247,59.4352027]}},{type:"Feature",properties:{osm_id:"2501558092",name:"has been burned to the ground",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[10.5283151,59.6817538]}},{type:"Feature",properties:{osm_id:"2506824603",name:"Aas kafeteria",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant", +other_tags:null},geometry:{type:"Point",coordinates:[9.6966548,59.66463]}},{type:"Feature",properties:{osm_id:"2509390325",name:"Store Ringheim",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"website"=>"http://www.storeringheim.no"'},geometry:{type:"Point",coordinates:[6.4280215,60.6382912]}},{type:"Feature",properties:{osm_id:"2510666494",name:"Malin Restaurant & Sushibar",barrier:null,highway:null,ref:null,address:null,is_in:null, +place:null,man_made:null,amenity:"restaurant",other_tags:'"opening_hours"=>"Mo-Th 12:00-22:00; Fr,Sa 13:00-23:00; Su 13:00-22:00"'},geometry:{type:"Point",coordinates:[6.4204284,60.6283819]}},{type:"Feature",properties:{osm_id:"2518367073",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:'"internet_access"=>"wlan","internet_access:fee"=>"no"'},geometry:{type:"Point",coordinates:[7.691017,58.942245]}},{type:"Feature",properties:{osm_id:"2518767728", +name:"Hoftun Kro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"addr:city"=>"Gol","addr:country"=>"NO","addr:housenumber"=>"189","addr:postcode"=>"3551","addr:street"=>"Heradvegen"'},geometry:{type:"Point",coordinates:[9.0047579,60.6997802]}},{type:"Feature",properties:{osm_id:"2549651650",name:null,barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[11.0343791,60.0715949]}},{type:"Feature",properties:{osm_id:"2597384197",name:"Albert Bistro",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"internet_access:fee"=>"yes"'},geometry:{type:"Point",coordinates:[10.7278442,59.9101314]}},{type:"Feature",properties:{osm_id:"2604752475",name:"Viva Napoli",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"pizza"'}, +geometry:{type:"Point",coordinates:[23.6693412,70.6713953]}},{type:"Feature",properties:{osm_id:"2606157395",name:"Kaikanten",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point",coordinates:[23.6822613,70.6628819]}},{type:"Feature",properties:{osm_id:"2606157414",name:"Banjer'n Pub",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"pub",other_tags:null},geometry:{type:"Point", +coordinates:[23.6852984,70.662931]}},{type:"Feature",properties:{osm_id:"2606513192",name:"Qa spiseri",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:'"cuisine"=>"regional"'},geometry:{type:"Point",coordinates:[23.6831524,70.6633537]}},{type:"Feature",properties:{osm_id:"2608838317",name:"Dickson Restaurant",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null}, +geometry:{type:"Point",coordinates:[23.6814314,70.6639055]}},{type:"Feature",properties:{osm_id:"2612690429",name:"Eat",barrier:null,highway:null,ref:null,address:null,is_in:null,place:null,man_made:null,amenity:"restaurant",other_tags:null},geometry:{type:"Point",coordinates:[5.3228168,60.3900482]}}]};
\ No newline at end of file diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/package.json b/plugins/leaflet/scripts/Leaflet-MiniMap/package.json new file mode 100644 index 0000000..485c105 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/package.json @@ -0,0 +1,25 @@ +{ + "name": "leaflet-minimap", + "version": "1.0.0", + "author": "Norkart AS", + "description": "A plugin for Leaflet that provides a minimap in the corner of the map view.", + "license": "BSD-2-Clause", + "readmeFilename": "README.md", + "repository": { + "type": "git", + "url": "https://github.com/Norkart/Leaflet-MiniMap.git" + }, + "homepage": "https://github.com/Norkart/Leaflet-MiniMap", + "bugs": { + "url": "https://github.com/Norkart/Leaflet-MiniMap/issues" + }, + "dependencies": { + "leaflet": ">=0.5.0" + }, + "keywords": [ + "maps", + "leaflet", + "client", + "minimap" + ] +}
\ No newline at end of file diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/readme.md b/plugins/leaflet/scripts/Leaflet-MiniMap/readme.md new file mode 100644 index 0000000..d000cb4 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/readme.md @@ -0,0 +1,47 @@ +# Leaflet.MiniMap
+
+Leaflet.MiniMap is a simple minimap control that you can drop into your leaflet map, and it will create a small map in the corner which shows the same as the main map with a set zoom offset. (By default it is -5.)
+
+## Using the MiniMap control
+
+The control can be inserted in two lines: First you have to construct a layer for it to use, and then you create and attach the minimap control. Don't reuse the layer you added to the main map, strange behaviour will ensue! Alternatively, you can pass in a LayerGroup with multiple layers (for example with overlays or suitably themed markers). Marker layers can't be reused either. (See issue #52 for a discussion of syncronising marker layers.)
+
+From the [example](http://norkart.github.com/Leaflet-MiniMap/example.html):
+
+ var osm2 = new L.TileLayer(osmUrl, {minZoom: 0, maxZoom: 13, attribution: osmAttrib});
+ var miniMap = new L.Control.MiniMap(osm2).addTo(map);
+
+As the minimap control inherits from leaflet's control, positioning is handled automatically by leaflet. However, you can still style the minimap and set its size by modifying the css file.
+
+**Note:** Leaflet version 0.5 or higher is required.
+
+## Available Options
+ The mini map uses options which can be set in the same way as other leaflet options, and these are the available options:
+
+`position:` The standard Leaflet.Control position parameter, used like all the other controls. Defaults to 'bottomright'.
+
+`width:` The width of the minimap in pixels. Defaults to 150.
+
+`height:` The height of the minimap in pixels. Defaults to 150.
+
+`zoomLevelOffset:` The offset applied to the zoom in the minimap compared to the zoom of the main map. Can be positive or negative, defaults to -5.
+
+`zoomLevelFixed:` Overrides the offset to apply a fixed zoom level to the minimap regardless of the main map zoom. Set it to any valid zoom level, if unset `zoomLevelOffset` is used instead.
+
+`zoomAnimation:` Sets whether the minimap should have an animated zoom. (Will cause it to lag a bit after the movement of the main map.) Defaults to false.
+
+`toggleDisplay:` Sets whether the minimap should have a button to minimise it. Defaults to false.
+
+`autoToggleDisplay:` Sets whether the minimap should hide automatically if the parent map bounds does not fit within the minimap bounds. Especially useful when 'zoomLevelFixed' is set.
+
+`aimingRectOptions:` Sets the style of the aiming rectangle by passing in a [Path.Options object](http://leafletjs.com/reference.html#path-options). (Clickable will always be overridden and set to false.)
+
+`shadowRectOptions:` Sets the style of the aiming shadow rectangle by passing in a [Path.Options object](http://leafletjs.com/reference.html#path-options). (Clickable will always be overridden and set to false.)
+
+###Translation strings
+
+These are not passed as options, but are overridden in a subclass. To do general translation overrides take a look at the german example sourcefile.
+
+`hideText:` Text-String to be displayed as Tooltip when hovering over the toggle button on the MiniMap and it is visible.
+
+`showText:` Text-String to be displayed as Tooltip when hovering over the toggle button on the MiniMap and it is hidden.
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap-de.js b/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap-de.js new file mode 100644 index 0000000..41e9239 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap-de.js @@ -0,0 +1 @@ +L.extend(L.Control.MiniMap.prototype,{hideText:"Miniaturkarte ausblenden",showText:"Miniaturkarte einblenden"});
\ No newline at end of file diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap.css b/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap.css new file mode 100644 index 0000000..997725e --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap.css @@ -0,0 +1,43 @@ +.leaflet-control-minimap {
+ border:solid rgba(255, 255, 255, 1.0) 4px;
+ box-shadow: 0 1px 5px rgba(0,0,0,0.65);
+ border-radius: 3px;
+ background: #f8f8f9;
+ transition: all .2s;
+}
+
+.leaflet-control-minimap a {
+ background-color: rgba(255, 255, 255, 1.0);
+ background-repeat: no-repeat;
+ z-index: 99999;
+ transition: all .2s;
+ border-radius: 3px 0px 0px 0px;
+}
+
+.leaflet-control-minimap a.minimized {
+ -webkit-transform: rotate(180deg);
+ transform: rotate(180deg);
+ border-radius: 0px;
+}
+
+.leaflet-control-minimap-toggle-display {
+ background-image: url("images/toggle.png");
+ height: 19px;
+ width: 19px;
+ position: absolute;
+ bottom: 0;
+ right: 0;
+}
+
+/* Old IE */
+.leaflet-oldie .leaflet-control-minimap {
+ border: 1px solid #999;
+}
+
+.leaflet-oldie .leaflet-control-minimap a {
+ background-color: #fff;
+}
+
+.leaflet-oldie .leaflet-control-minimap a.minimized {
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
+}
diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap.js b/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap.js new file mode 100644 index 0000000..426b4b9 --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/src/Control.MiniMap.js @@ -0,0 +1,12 @@ +L.Control.MiniMap=L.Control.extend({options:{position:"bottomright",toggleDisplay:!1,zoomLevelOffset:-5,zoomLevelFixed:!1,zoomAnimation:!1,autoToggleDisplay:!1,width:150,height:150,aimingRectOptions:{color:"#ff7800",weight:1,clickable:!1},shadowRectOptions:{color:"#000000",weight:1,clickable:!1,opacity:0,fillOpacity:0}},hideText:"Hide MiniMap",showText:"Show MiniMap",initialize:function(a,c){L.Util.setOptions(this,c);this.options.aimingRectOptions.clickable=!1;this.options.shadowRectOptions.clickable= +!1;this._layer=a},onAdd:function(a){this._mainMap=a;this._container=L.DomUtil.create("div","leaflet-control-minimap");this._container.style.width=this.options.width+"px";this._container.style.height=this.options.height+"px";L.DomEvent.disableClickPropagation(this._container);L.DomEvent.on(this._container,"mousewheel",L.DomEvent.stopPropagation);this._miniMap=new L.Map(this._container,{attributionControl:!1,zoomControl:!1,zoomAnimation:this.options.zoomAnimation,autoToggleDisplay:this.options.autoToggleDisplay, +touchZoom:!this.options.zoomLevelFixed,scrollWheelZoom:!this.options.zoomLevelFixed,doubleClickZoom:!this.options.zoomLevelFixed,boxZoom:!this.options.zoomLevelFixed,crs:a.options.crs});this._miniMap.addLayer(this._layer);this._minimized=this._userToggledDisplay=this._miniMapMoving=this._mainMapMoving=!1;this.options.toggleDisplay&&this._addToggleButton();this._miniMap.whenReady(L.Util.bind(function(){this._aimingRect=L.rectangle(this._mainMap.getBounds(),this.options.aimingRectOptions).addTo(this._miniMap); +this._shadowRect=L.rectangle(this._mainMap.getBounds(),this.options.shadowRectOptions).addTo(this._miniMap);this._mainMap.on("moveend",this._onMainMapMoved,this);this._mainMap.on("move",this._onMainMapMoving,this);this._miniMap.on("movestart",this._onMiniMapMoveStarted,this);this._miniMap.on("move",this._onMiniMapMoving,this);this._miniMap.on("moveend",this._onMiniMapMoved,this)},this));return this._container},addTo:function(a){L.Control.prototype.addTo.call(this,a);this._miniMap.setView(this._mainMap.getCenter(), +this._decideZoom(!0));this._setDisplay(this._decideMinimized());return this},onRemove:function(){this._mainMap.off("moveend",this._onMainMapMoved,this);this._mainMap.off("move",this._onMainMapMoving,this);this._miniMap.off("moveend",this._onMiniMapMoved,this);this._miniMap.removeLayer(this._layer)},_addToggleButton:function(){this._toggleDisplayButton=this.options.toggleDisplay?this._createButton("",this.hideText,"leaflet-control-minimap-toggle-display",this._container,this._toggleDisplayButtonClicked, +this):void 0},_createButton:function(a,c,b,d,e,f){b=L.DomUtil.create("a",b,d);b.innerHTML=a;b.href="#";b.title=c;a=L.DomEvent.stopPropagation;L.DomEvent.on(b,"click",a).on(b,"mousedown",a).on(b,"dblclick",a).on(b,"click",L.DomEvent.preventDefault).on(b,"click",e,f);return b},_toggleDisplayButtonClicked:function(){this._userToggledDisplay=!0;this._minimized?(this._restore(),this._toggleDisplayButton.title=this.hideText):(this._minimize(),this._toggleDisplayButton.title=this.showText)},_setDisplay:function(a){a!= +this._minimized&&(this._minimized?this._restore():this._minimize())},_minimize:function(){this.options.toggleDisplay?(this._container.style.width="19px",this._container.style.height="19px",this._toggleDisplayButton.className+=" minimized"):this._container.style.display="none";this._minimized=!0},_restore:function(){this.options.toggleDisplay?(this._container.style.width=this.options.width+"px",this._container.style.height=this.options.height+"px",this._toggleDisplayButton.className=this._toggleDisplayButton.className.replace(/(?:^|\s)minimized(?!\S)/g, +"")):this._container.style.display="block";this._minimized=!1},_onMainMapMoved:function(){this._miniMapMoving?this._miniMapMoving=!1:(this._mainMapMoving=!0,this._miniMap.setView(this._mainMap.getCenter(),this._decideZoom(!0)),this._setDisplay(this._decideMinimized()));this._aimingRect.setBounds(this._mainMap.getBounds())},_onMainMapMoving:function(){this._aimingRect.setBounds(this._mainMap.getBounds())},_onMiniMapMoveStarted:function(){var a=this._aimingRect.getBounds(),c=this._miniMap.latLngToContainerPoint(a.getSouthWest()), +a=this._miniMap.latLngToContainerPoint(a.getNorthEast());this._lastAimingRectPosition={sw:c,ne:a}},_onMiniMapMoving:function(){!this._mainMapMoving&&this._lastAimingRectPosition&&(this._shadowRect.setBounds(new L.LatLngBounds(this._miniMap.containerPointToLatLng(this._lastAimingRectPosition.sw),this._miniMap.containerPointToLatLng(this._lastAimingRectPosition.ne))),this._shadowRect.setStyle({opacity:1,fillOpacity:0.3}))},_onMiniMapMoved:function(){this._mainMapMoving?this._mainMapMoving=!1:(this._miniMapMoving= +!0,this._mainMap.setView(this._miniMap.getCenter(),this._decideZoom(!1)),this._shadowRect.setStyle({opacity:0,fillOpacity:0}))},_decideZoom:function(a){if(this.options.zoomLevelFixed)return a?this.options.zoomLevelFixed:this._mainMap.getZoom();if(a)return this._mainMap.getZoom()+this.options.zoomLevelOffset;var a=this._miniMap.getZoom()-this._mainMap.getZoom(),c=this._miniMap.getZoom()-this.options.zoomLevelOffset;a>this.options.zoomLevelOffset&&this._mainMap.getZoom()<this._miniMap.getMinZoom()- +this.options.zoomLevelOffset?this._miniMap.getZoom()>this._lastMiniMapZoom?(a=this._mainMap.getZoom()+1,this._miniMap.setZoom(this._miniMap.getZoom()-1)):a=this._mainMap.getZoom():a=c;this._lastMiniMapZoom=this._miniMap.getZoom();return a},_decideMinimized:function(){return this._userToggledDisplay?this._minimized:this.options.autoToggleDisplay?this._mainMap.getBounds().contains(this._miniMap.getBounds())?!0:!1:this._minimized}});L.Map.mergeOptions({miniMapControl:!1}); +L.Map.addInitHook(function(){this.options.miniMapControl&&(this.miniMapControl=(new L.Control.MiniMap).addTo(this))});L.control.minimap=function(a){return new L.Control.MiniMap(a)};
\ No newline at end of file diff --git a/plugins/leaflet/scripts/Leaflet-MiniMap/src/images/toggle.png b/plugins/leaflet/scripts/Leaflet-MiniMap/src/images/toggle.png Binary files differnew file mode 100644 index 0000000..205e38b --- /dev/null +++ b/plugins/leaflet/scripts/Leaflet-MiniMap/src/images/toggle.png diff --git a/plugins/leaflet/scripts/leaflet-providers/.jshintignore b/plugins/leaflet/scripts/leaflet-providers/.jshintignore new file mode 100644 index 0000000..abcb3c4 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/.jshintignore @@ -0,0 +1 @@ +preview/highlightjs/highlight.pack.js
\ No newline at end of file diff --git a/plugins/leaflet/scripts/leaflet-providers/.jshintrc b/plugins/leaflet/scripts/leaflet-providers/.jshintrc new file mode 100644 index 0000000..c2c404e --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/.jshintrc @@ -0,0 +1,40 @@ +{ + + // environment + "browser": true, + "node": false, + "strict": true, + + "globals": { + "L": true + }, + + // code style + "bitwise": true, + "camelcase": true, + "curly": true, + "eqeqeq": true, + "forin": false, + "immed": true, + "latedef": true, + "newcap": true, + "noarg": true, + "noempty": true, + "nonew": true, + "undef": true, + "unused": true, + "quotmark": "single", + + // whitespace + "indent": 4, + "trailing": true, + "white": true, + "smarttabs": true, + "maxlen": 120 + + // code simplicity - not enforced but nice to check from time to time + // "maxstatements": 20, + // "maxcomplexity": 5 + // "maxparams": 4, + // "maxdepth": 4 +} diff --git a/plugins/leaflet/scripts/leaflet-providers/CONTRIBUTING.md b/plugins/leaflet/scripts/leaflet-providers/CONTRIBUTING.md new file mode 100644 index 0000000..fcdc8bd --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/CONTRIBUTING.md @@ -0,0 +1,10 @@ +So you want to add a layer?
+=======
+
+Yay! go add it to the leaflet-providers.js as long as it follows the following
+rules:
+
+- Don't violate a providers TOS (if it exists, include a link to it)
+- Don't pre-populate api keys with working keys.
+- It should be a basic tile source, no exteral libraries etc.
+- The owner hasn't asked us to remove it (hasn't happened yet)
diff --git a/plugins/leaflet/scripts/leaflet-providers/README.md b/plugins/leaflet/scripts/leaflet-providers/README.md new file mode 100644 index 0000000..a93ab06 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/README.md @@ -0,0 +1,75 @@ +Leaflet-providers
+=================
+An extension to [Leaflet](http://leafletjs.com/) that contains configurations for various free tile providers.
+
+# Usage
+Leaflet-providers [providers](#providers) are refered to with a `provider[.<variant>]`-string. Let's say you want to add the nice [Watercolor](http://maps.stamen.com/#watercolor/) style from Stamen to your map, you pass `Stamen.Watercolor` to the `L.tileLayer.provider`-constructor, which will return a [L.TileLayer](http://leafletjs.com/reference.html#tilelayer) instance for Stamens Watercolor tile layer.
+
+```Javascript
+// add Stamen Watercolor to map.
+L.tileLayer.provider('Stamen.Watercolor').addTo(map);
+```
+
+# Providers
+
+Leaflet-providers provides tile layers from different providers, including *OpenStreetMap*, *MapQuestOpen*, *Stamen*, *Esri* and *OpenWeatherMap*. The full listing of free to use layers can be [previewed](http://leaflet-extras.github.io/leaflet-providers/preview/index.html). The page will show you the name to use with `leaflet-providers.js` and the code to use it without dependencies.
+
+## Providers requiring registration
+
+In addition to the providers you are free to use, we support some layers which require registration.
+
+### Nokia.
+
+In order to use Nokia basemaps, you must [register](https://developer.here.com/web/guest/myapps). With your `devID` and `appID` specified in the options, the available layers are:
+
+* Nokia.normalDay
+* Nokia.normalGreyDay
+* Nokia.satelliteNoLabelsDay
+* Nokia.satelliteYesLabelsDay
+* Nokia.terrainDay
+
+For example:
+```Javascript
+L.tileLayer.provider('Nokia.terrainDay', {
+ devID: 'insert ID here',
+ appId: 'insert ID here'
+}).addTo(map);
+```
+
+### Mapbox
+
+In order to use Mapbox maps, you must [register](https://tiles.mapbox.com/signup). If your user name is `YourName` and your map is called `MyMap` you can add it with
+```JavaScript
+L.tileLayer.provider('MapBox.YourName.MyMap');
+```
+
+### Esri/ArcGIS
+
+In order to use ArcGIS maps, you must [register](https://developers.arcgis.com/en/sign-up/) and abide by the [terms of service](https://developers.arcgis.com/en/terms/). Available layers are...
+
+* Esri.WorldStreetMap
+* Esri.DeLorme
+* Esri.WorldTopoMap
+* Esri.WorldImagery
+* Esri.WorldTerrain
+* Esri.WorldShadedRelief
+* Esri.WorldPhysical
+* Esri.OceanBasemap
+* Esri.NatGeoWorldMap
+* Esri.WorldGrayCanvas
+
+# Goodies
+
+An other little goodie this library provides is a prefilled layer control, so you can just provide an array of strings:
+
+```JavaScript
+var baseLayers = ['Stamen.Watercolor', 'OpenStreetMap.Mapnik'],
+ overlays = ['OpenWeatherMap.Clouds'];
+
+var layerControl = L.control.layers.provided(baseLayers, overlays).addTo(map);
+
+// you can still add your own afterwards with
+layerControl.addBaseLayer(layer, name);
+```
+
+This work was inspired from <https://gist.github.com/1804938>, and originally created by [Stefan Seelmann](https://github.com/seelmann).
diff --git a/plugins/leaflet/scripts/leaflet-providers/bower.json b/plugins/leaflet/scripts/leaflet-providers/bower.json new file mode 100644 index 0000000..267d1ca --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/bower.json @@ -0,0 +1,22 @@ +{ + "name": "leaflet-providers", + "version": "1.0.3", + "homepage": "https://github.com/leaflet-extras/leaflet-providers", + "description": "An extension to Leaflet that contains configurations for various free tile providers.", + "main": "leaflet-providers.js", + "keywords": [ + "leaflet", + "stamen", + "osm" + ], + "license": "BSD-2-Clause", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests", + "preview", + "*.html" + ] +} diff --git a/plugins/leaflet/scripts/leaflet-providers/css/gh-fork-ribbon.css b/plugins/leaflet/scripts/leaflet-providers/css/gh-fork-ribbon.css new file mode 100644 index 0000000..d0ba7e6 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/css/gh-fork-ribbon.css @@ -0,0 +1,127 @@ +/* Left will inherit from right (so we don't need to duplicate code */
+.github-fork-ribbon {
+ /* The right and left lasses determine the side we attach our banner to */
+ position: absolute;
+
+ /* Add a bit of padding to give some substance outside the "stitching" */
+ padding: 2px 0;
+
+ /* Set the base colour */
+ background-color: #a00;
+
+ /* Set a gradient: transparent black at the top to almost-transparent black at the bottom */
+ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.00)), to(rgba(0, 0, 0, 0.15)));
+ background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15));
+ background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15));
+ background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15));
+ background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15));
+ background-image: linear-gradient(top, rgba(0, 0, 0, 0.00), rgba(0, 0, 0, 0.15));
+ filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#000000', EndColorStr='#000000');
+
+ /* Add a drop shadow */
+ -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5);
+ box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.5);
+
+ z-index: 9999;
+}
+
+.github-fork-ribbon a {
+ /* Set the font */
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
+ font-size: 13px;
+ font-weight: 700;
+ color: white;
+
+ /* Set the text properties */
+ text-decoration: none;
+ text-shadow: 0 -1px rgba(0,0,0,0.5);
+ text-align: center;
+
+ /* Set the geometry. If you fiddle with these you'll also need to tweak the top and right values in #github-fork-ribbon. */
+ width: 200px;
+ line-height: 20px;
+
+ /* Set the layout properties */
+ display: inline-block;
+ padding: 2px 0;
+
+ /* Add "stitching" effect */
+ border-width: 1px 0;
+ border-style: dotted;
+ border-color: rgba(255,255,255,0.7);
+}
+
+.github-fork-ribbon-wrapper {
+ width: 150px;
+ height: 150px;
+ position: absolute;
+ overflow: hidden;
+ top: 0;
+}
+
+.github-fork-ribbon-wrapper.left {
+ left: 0;
+}
+
+.github-fork-ribbon-wrapper.right {
+ right: 0;
+}
+
+.github-fork-ribbon-wrapper.left-bottom {
+ position: fixed;
+ top: inherit;
+ bottom: 0;
+ left: 0;
+}
+
+.github-fork-ribbon-wrapper.right-bottom {
+ position: fixed;
+ top: inherit;
+ bottom: 0;
+ right: 0;
+}
+
+.github-fork-ribbon-wrapper.right .github-fork-ribbon {
+ top: 42px;
+ right: -43px;
+
+ /* Rotate the banner 45 degrees */
+ -webkit-transform: rotate(45deg);
+ -moz-transform: rotate(45deg);
+ -o-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.github-fork-ribbon-wrapper.left .github-fork-ribbon {
+ top: 42px;
+ left: -43px;
+
+ /* Rotate the banner -45 degrees */
+ -webkit-transform: rotate(-45deg);
+ -moz-transform: rotate(-45deg);
+ -o-transform: rotate(-45deg);
+ transform: rotate(-45deg);
+}
+
+
+.github-fork-ribbon-wrapper.left-bottom .github-fork-ribbon {
+ top: 80px;
+ left: -43px;
+
+ /* Rotate the banner -45 degrees */
+ -webkit-transform: rotate(45deg);
+ -moz-transform: rotate(45deg);
+ -o-transform: rotate(45deg);
+ transform: rotate(45deg);
+}
+
+.github-fork-ribbon-wrapper.right-bottom .github-fork-ribbon {
+ top: 80px;
+ right: -43px;
+
+ /* Rotate the banner -45 degrees */
+ -webkit-transform: rotate(-45deg);
+ -moz-transform: rotate(-45deg);
+ -o-transform: rotate(-45deg);
+ transform: rotate(-45deg);
+}
diff --git a/plugins/leaflet/scripts/leaflet-providers/css/gh-fork-ribbon.ie.css b/plugins/leaflet/scripts/leaflet-providers/css/gh-fork-ribbon.ie.css new file mode 100644 index 0000000..92fc4ce --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/css/gh-fork-ribbon.ie.css @@ -0,0 +1,68 @@ +/* IE voodoo courtesy of http://stackoverflow.com/a/4617511/263871 and
+ * http://www.useragentman.com/IETransformsTranslator */
+.github-fork-ribbon-wrapper.right .github-fork-ribbon {
+ /* IE positioning hack (couldn't find a transform-origin alternative for IE) */
+ top: -22px;
+ right: -62px;
+
+ /* IE8+ */
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865474, M12=-0.7071067811865477, M21=0.7071067811865477, M22=0.7071067811865474, SizingMethod='auto expand')";
+ /* IE6 and 7 */
+ filter: progid:DXImageTransform.Microsoft.Matrix(
+ M11=0.7071067811865474,
+ M12=-0.7071067811865477,
+ M21=0.7071067811865477,
+ M22=0.7071067811865474,
+ SizingMethod='auto expand'
+ );
+}
+
+.github-fork-ribbon-wrapper.left .github-fork-ribbon {
+ top: -22px;
+ left: -22px;
+
+ /* IE8+ */
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865483, M12=0.7071067811865467, M21=-0.7071067811865467, M22=0.7071067811865483, SizingMethod='auto expand')";
+ /* IE6 and 7 */
+ filter: progid:DXImageTransform.Microsoft.Matrix(
+ M11=0.7071067811865483,
+ M12=0.7071067811865467,
+ M21=-0.7071067811865467,
+ M22=0.7071067811865483,
+ SizingMethod='auto expand'
+ );
+}
+
+.github-fork-ribbon-wrapper.left-bottom .github-fork-ribbon {
+ /* IE positioning hack (couldn't find a transform-origin alternative for IE) */
+ top: 12px;
+ left: -22px;
+
+
+ /* IE8+ */
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865474, M12=-0.7071067811865477, M21=0.7071067811865477, M22=0.7071067811865474, SizingMethod='auto expand')";
+ /* IE6 and 7 */
+/* filter: progid:DXImageTransform.Microsoft.Matrix(
+ M11=0.7071067811865474,
+ M12=-0.7071067811865477,
+ M21=0.7071067811865477,
+ M22=0.7071067811865474,
+ SizingMethod='auto expand'
+ );
+*/}
+
+.github-fork-ribbon-wrapper.right-bottom .github-fork-ribbon {
+ top: 12px;
+ right: -62px;
+
+ /* IE8+ */
+ -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.7071067811865483, M12=0.7071067811865467, M21=-0.7071067811865467, M22=0.7071067811865483, SizingMethod='auto expand')";
+ /* IE6 and 7 */
+ filter: progid:DXImageTransform.Microsoft.Matrix(
+ M11=0.7071067811865483,
+ M12=0.7071067811865467,
+ M21=-0.7071067811865467,
+ M22=0.7071067811865483,
+ SizingMethod='auto expand'
+ );
+}
diff --git a/plugins/leaflet/scripts/leaflet-providers/index.html b/plugins/leaflet/scripts/leaflet-providers/index.html new file mode 100644 index 0000000..08566b2 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/index.html @@ -0,0 +1,153 @@ +<!doctype html>
+<html lang="en">
+<head>
+ <title>Leaflet Provider Demo</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+ <!-- Leaflet style. REQUIRED! -->
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
+ <style>
+ html { height: 100% }
+ body { height: 100%; margin: 0; padding: 0;}
+ .map { height: 100% }
+ </style>
+ <!--Fork Me on Github ribbon, we're using the awsome version from simonwhitaker available at https://github.com/simonwhitaker/github-fork-ribbon-css -->
+ <link rel="stylesheet" href="css/gh-fork-ribbon.css" />
+ <!--[if IE]>
+ <link rel="stylesheet" href="css/gh-fork-ribbon.ie.css" />
+ <![endif]-->
+</head>
+<body>
+ <div class="github-fork-ribbon-wrapper left">
+ <div class="github-fork-ribbon">
+ <a href="https://github.com/leaflet-extras/leaflet-providers">Fork me on GitHub</a>
+ </div>
+ </div>
+ <div id="map" class="map"></div>
+
+ <script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet-src.js"></script>
+ <script src="leaflet-providers.js"></script>
+ <script>
+ var map = L.map('map', {
+ center: [48, -3],
+ zoom: 5,
+ zoomControl: false
+ });
+
+ var defaultLayer = L.tileLayer.provider('OpenStreetMap.Mapnik').addTo(map);
+
+ var baseLayers = {
+ 'OpenStreetMap Default': defaultLayer,
+ 'OpenStreetMap German Style': L.tileLayer.provider('OpenStreetMap.DE'),
+ 'OpenStreetMap Black and White': L.tileLayer.provider('OpenStreetMap.BlackAndWhite'),
+ 'OpenStreetMap H.O.T.': L.tileLayer.provider('OpenStreetMap.HOT'),
+ 'Thunderforest OpenCycleMap': L.tileLayer.provider('Thunderforest.OpenCycleMap'),
+ 'Thunderforest Transport': L.tileLayer.provider('Thunderforest.Transport'),
+ 'Thunderforest Landscape': L.tileLayer.provider('Thunderforest.Landscape'),
+ 'MapQuest OSM': L.tileLayer.provider('MapQuestOpen.OSM'),
+ 'MapQuest Aerial': L.tileLayer.provider('MapQuestOpen.Aerial'),
+ 'MapBox Example': L.tileLayer.provider('MapBox.examples.map-zr0njcqy'),
+ 'Stamen Toner': L.tileLayer.provider('Stamen.Toner'),
+ 'Stamen Terrain': L.tileLayer.provider('Stamen.Terrain'),
+ 'Stamen Watercolor': L.tileLayer.provider('Stamen.Watercolor'),
+ 'Esri WorldStreetMap': L.tileLayer.provider('Esri.WorldStreetMap'),
+ 'Esri DeLorme': L.tileLayer.provider('Esri.DeLorme'),
+ 'Esri WorldTopoMap': L.tileLayer.provider('Esri.WorldTopoMap'),
+ 'Esri WorldImagery': L.tileLayer.provider('Esri.WorldImagery'),
+ 'Esri WorldTerrain': L.tileLayer.provider('Esri.WorldTerrain'),
+ 'Esri WorldShadedRelief': L.tileLayer.provider('Esri.WorldShadedRelief'),
+ 'Esri WorldPhysical': L.tileLayer.provider('Esri.WorldPhysical'),
+ 'Esri OceanBasemap': L.tileLayer.provider('Esri.OceanBasemap'),
+ 'Esri NatGeoWorldMap': L.tileLayer.provider('Esri.NatGeoWorldMap'),
+ 'Esri WorldGrayCanvas': L.tileLayer.provider('Esri.WorldGrayCanvas'),
+ 'Nokia Normal Day': L.tileLayer.provider('Nokia.normalDay'),
+ 'Nokia Normal Day Grey': L.tileLayer.provider('Nokia.normalGreyDay'),
+ 'Nokia Satellite': L.tileLayer.provider('Nokia.satelliteNoLabelsDay'),
+ 'Nokia Satellite (Labeled)': L.tileLayer.provider('Nokia.satelliteYesLabelsDay'),
+ 'Nokia Terrain': L.tileLayer.provider('Nokia.terrainDay'),
+ 'Acetate': L.tileLayer.provider('Acetate')
+ };
+
+ var overlayLayers = {
+ 'OpenSeaMap': L.tileLayer.provider('OpenSeaMap'),
+ 'OpenWeatherMap Clouds': L.tileLayer.provider('OpenWeatherMap.Clouds'),
+ 'OpenWeatherMap CloudsClassic': L.tileLayer.provider('OpenWeatherMap.CloudsClassic'),
+ 'OpenWeatherMap Precipitation': L.tileLayer.provider('OpenWeatherMap.Precipitation'),
+ 'OpenWeatherMap PrecipitationClassic': L.tileLayer.provider('OpenWeatherMap.PrecipitationClassic'),
+ 'OpenWeatherMap Rain': L.tileLayer.provider('OpenWeatherMap.Rain'),
+ 'OpenWeatherMap RainClassic': L.tileLayer.provider('OpenWeatherMap.RainClassic'),
+ 'OpenWeatherMap Pressure': L.tileLayer.provider('OpenWeatherMap.Pressure'),
+ 'OpenWeatherMap PressureContour': L.tileLayer.provider('OpenWeatherMap.PressureContour'),
+ 'OpenWeatherMap Wind': L.tileLayer.provider('OpenWeatherMap.Wind'),
+ 'OpenWeatherMap Temperature': L.tileLayer.provider('OpenWeatherMap.Temperature'),
+ 'OpenWeatherMap Snow': L.tileLayer.provider('OpenWeatherMap.Snow')
+ };
+
+ var layerControl = L.control.layers(baseLayers, overlayLayers, {collapsed: false}).addTo(map);
+
+ /* you could also use the following code instead
+ var map = new L.Map('map').setView([48, -3],5);
+
+ var defaultLayer = L.tileLayer.provider('OpenStreetMap.Mapnik').addTo(map);
+
+ var baseLayers = [
+ 'OpenStreetMap.Mapnik',
+ 'OpenStreetMap.DE',
+ 'OpenStreetMap.BlackAndWhite',
+ 'Thunderforest.OpenCycleMap',
+ 'Thunderforest.Transport',
+ 'Thunderforest.Landscape',
+ 'MapQuestOpen.OSM',
+ 'MapQuestOpen.Aerial',
+ 'MapBox.examples.map-zr0njcqy',
+ 'Stamen.Toner',
+ 'Stamen.Terrain',
+ 'Stamen.Watercolor',
+ 'Esri.WorldStreetMap',
+ 'Esri.DeLorme',
+ 'Esri.WorldTopoMap',
+ 'Esri.WorldImagery',
+ 'Esri.WorldTerrain',
+ 'Esri.WorldShadedRelief',
+ 'Esri.WorldPhysical',
+ 'Esri.OceanBasemap',
+ 'Esri.NatGeoWorldMap',
+ 'Esri.WorldGrayCanvas',
+ 'Nokia.normalDay',
+ 'Nokia.normalGreyDay',
+ 'Nokia.satelliteNoLabelsDay',
+ 'Nokia.satelliteYesLabelsDay,
+ 'Nokia.terrainDay'
+ ];
+
+ var overlayLayers = [
+ 'OpenWeatherMap.Clouds',
+ 'OpenWeatherMap.CloudsClassic',
+ 'OpenWeatherMap.Precipitation',
+ 'OpenWeatherMap.PrecipitationClassic',
+ 'OpenWeatherMap.Rain',
+ 'OpenWeatherMap.RainClassic',
+ 'OpenWeatherMap.Pressure',
+ 'OpenWeatherMap.PressureContour',
+ 'OpenWeatherMap.Wind',
+ 'OpenWeatherMap.Temperature',
+ 'OpenWeatherMap.Snow'
+ ];
+
+ L.control.layers.provided(baseLayers, overlayLayers, {collapsed: false}).addTo(map);
+ */
+
+ // resize layers control to fit into view.
+ function resizeLayerControl() {
+ var layerControlHeight = document.body.clientHeight - (10 + 50);
+ var layerControl = document.getElementsByClassName('leaflet-control-layers-expanded')[0];
+
+ layerControl.style.overflowY = 'auto';
+ layerControl.style.maxHeight = layerControlHeight + 'px';
+ }
+ map.on('resize', resizeLayerControl);
+ resizeLayerControl();
+ </script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/leaflet-providers/leaflet-providers.js b/plugins/leaflet/scripts/leaflet-providers/leaflet-providers.js new file mode 100644 index 0000000..90fbc91 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/leaflet-providers.js @@ -0,0 +1,20 @@ +(function(){L.TileLayer.Provider=L.TileLayer.extend({initialize:function(a,b){var f=L.TileLayer.Provider.providers,e=a.split("."),g=e[0],h=e[1];if(!f[g])throw"No such provider ("+g+")";var d={url:f[g].url,options:f[g].options};if(h&&"variants"in f[g]){if(!(h in f[g].variants))throw"No such name in provider ("+h+")";e=f[g].variants[h];d={url:e.url||d.url,options:L.Util.extend({},d.options,e.options)}}else"function"===typeof d.url&&(d.url=d.url(e.splice(1,e.length-1).join(".")));var c=function(a){return-1=== +a.indexOf("{attribution.")?a:a.replace(/\{attribution.(\w*)\}/,function(a,b){return c(f[b].options.attribution)})};d.options.attribution=c(d.options.attribution);e=L.Util.extend({},d.options,b);L.TileLayer.prototype.initialize.call(this,d.url,e)}});L.TileLayer.Provider.providers={OpenStreetMap:{url:"http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",options:{attribution:'© <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>'}, +variants:{Mapnik:{},BlackAndWhite:{url:"http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png"},DE:{url:"http://{s}.tile.openstreetmap.de/tiles/osmde/{z}/{x}/{y}.png"},HOT:{url:"http://{s}.tile.openstreetmap.fr/hot/{z}/{x}/{y}.png",options:{attribution:'{attribution.OpenStreetMap}, Tiles courtesy of <a href="http://hot.openstreetmap.org/" target="_blank">Humanitarian OpenStreetMap Team</a>'}}}},OpenCycleMap:{url:"http://{s}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png",options:{attribution:'© <a href="http://www.opencyclemap.org">OpenCycleMap</a>, {attribution.OpenStreetMap}'}}, +OpenSeaMap:{url:"http://tiles.openseamap.org/seamark/{z}/{x}/{y}.png",options:{attribution:'Map data: © <a href="http://www.openseamap.org">OpenSeaMap</a> contributors'}},Thunderforest:{url:"http://{s}.tile.opencyclemap.org/cycle/{z}/{x}/{y}.png",options:{attribution:"{attribution.OpenCycleMap}"},variants:{OpenCycleMap:{},Transport:{url:"http://{s}.tile2.opencyclemap.org/transport/{z}/{x}/{y}.png"},Landscape:{url:"http://{s}.tile3.opencyclemap.org/landscape/{z}/{x}/{y}.png"},Outdoors:{url:"http://{s}.tile.thunderforest.com/outdoors/{z}/{x}/{y}.png"}}}, +OpenMapSurfer:{url:"http://openmapsurfer.uni-hd.de/tiles/roads/x={x}&y={y}&z={z}",options:{attribution:'Imagery from <a href="http://giscience.uni-hd.de/">GIScience Research Group @ University of Heidelberg</a> — Map data {attribution.OpenStreetMap}'},variants:{Roads:{},AdminBounds:{url:"http://openmapsurfer.uni-hd.de/tiles/adminb/x={x}&y={y}&z={z}"},Grayscale:{url:"http://openmapsurfer.uni-hd.de/tiles/roadsg/x={x}&y={y}&z={z}"}}},MapQuestOpen:{url:"http://otile{s}.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.jpeg", +options:{attribution:'Tiles Courtesy of <a href="http://www.mapquest.com/">MapQuest</a> — Map data {attribution.OpenStreetMap}',subdomains:"1234"},variants:{OSM:{},Aerial:{url:"http://oatile{s}.mqcdn.com/tiles/1.0.0/sat/{z}/{x}/{y}.jpg",options:{attribution:'Tiles Courtesy of <a href="http://www.mapquest.com/">MapQuest</a> — Portions Courtesy NASA/JPL-Caltech and U.S. Depart. of Agriculture, Farm Service Agency'}}}},MapBox:{url:function(a){return"http://{s}.tiles.mapbox.com/v3/"+a+"/{z}/{x}/{y}.png"}, +options:{attribution:'Imagery from <a href="http://mapbox.com/about/maps/">MapBox</a> — Map data {attribution.OpenStreetMap}',subdomains:"abcd"}},Stamen:{url:"http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png",options:{attribution:'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> — Map data {attribution.OpenStreetMap}',subdomains:"abcd",minZoom:0,maxZoom:20},variants:{Toner:{},TonerBackground:{url:"http://{s}.tile.stamen.com/toner-background/{z}/{x}/{y}.png"}, +TonerHybrid:{url:"http://{s}.tile.stamen.com/toner-hybrid/{z}/{x}/{y}.png"},TonerLines:{url:"http://{s}.tile.stamen.com/toner-lines/{z}/{x}/{y}.png"},TonerLabels:{url:"http://{s}.tile.stamen.com/toner-labels/{z}/{x}/{y}.png"},TonerLite:{url:"http://{s}.tile.stamen.com/toner-lite/{z}/{x}/{y}.png"},Terrain:{url:"http://{s}.tile.stamen.com/terrain/{z}/{x}/{y}.jpg",options:{minZoom:4,maxZoom:18}},TerrainBackground:{url:"http://{s}.tile.stamen.com/terrain-background/{z}/{x}/{y}.jpg",options:{minZoom:4, +maxZoom:18}},Watercolor:{url:"http://{s}.tile.stamen.com/watercolor/{z}/{x}/{y}.jpg",options:{minZoom:3,maxZoom:16}}}},Esri:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}",options:{attribution:"Tiles © Esri"},variants:{WorldStreetMap:{options:{attribution:"{attribution.Esri} — Source: Esri, DeLorme, NAVTEQ, USGS, Intermap, iPC, NRCAN, Esri Japan, METI, Esri China (Hong Kong), Esri (Thailand), TomTom, 2012"}},DeLorme:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/Specialty/DeLorme_World_Base_Map/MapServer/tile/{z}/{y}/{x}", +options:{minZoom:1,maxZoom:11,attribution:"{attribution.Esri} — Copyright: ©2012 DeLorme"}},WorldTopoMap:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/World_Topo_Map/MapServer/tile/{z}/{y}/{x}",options:{attribution:"{attribution.Esri} — Esri, DeLorme, NAVTEQ, TomTom, Intermap, iPC, USGS, FAO, NPS, NRCAN, GeoBase, Kadaster NL, Ordnance Survey, Esri Japan, METI, Esri China (Hong Kong), and the GIS User Community"}},WorldImagery:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}", +options:{attribution:"{attribution.Esri} — Source: Esri, i-cubed, USDA, USGS, AEX, GeoEye, Getmapping, Aerogrid, IGN, IGP, UPR-EGP, and the GIS User Community"}},WorldTerrain:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/World_Terrain_Base/MapServer/tile/{z}/{y}/{x}",options:{maxZoom:13,attribution:"{attribution.Esri} — Source: USGS, Esri, TANA, DeLorme, and NPS"}},WorldShadedRelief:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/World_Shaded_Relief/MapServer/tile/{z}/{y}/{x}", +options:{maxZoom:13,attribution:"{attribution.Esri} — Source: Esri"}},WorldPhysical:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/World_Physical_Map/MapServer/tile/{z}/{y}/{x}",options:{maxZoom:8,attribution:"{attribution.Esri} — Source: US National Park Service"}},OceanBasemap:{url:"http://services.arcgisonline.com/ArcGIS/rest/services/Ocean_Basemap/MapServer/tile/{z}/{y}/{x}",options:{maxZoom:13,attribution:"{attribution.Esri} — Sources: GEBCO, NOAA, CHS, OSU, UNH, CSUMB, National Geographic, DeLorme, NAVTEQ, and Esri"}}, +NatGeoWorldMap:{url:"http://services.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}",options:{maxZoom:16,attribution:"{attribution.Esri} — National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC"}},WorldGrayCanvas:{url:"http://server.arcgisonline.com/ArcGIS/rest/services/Canvas/World_Light_Gray_Base/MapServer/tile/{z}/{y}/{x}",options:{maxZoom:16,attribution:"{attribution.Esri} — Esri, DeLorme, NAVTEQ"}}}}, +OpenWeatherMap:{options:{attribution:'Map data © <a href="http://openweathermap.org">OpenWeatherMap</a>',opacity:0.5},variants:{Clouds:{url:"http://{s}.tile.openweathermap.org/map/clouds/{z}/{x}/{y}.png"},CloudsClassic:{url:"http://{s}.tile.openweathermap.org/map/clouds_cls/{z}/{x}/{y}.png"},Precipitation:{url:"http://{s}.tile.openweathermap.org/map/precipitation/{z}/{x}/{y}.png"},PrecipitationClassic:{url:"http://{s}.tile.openweathermap.org/map/precipitation_cls/{z}/{x}/{y}.png"},Rain:{url:"http://{s}.tile.openweathermap.org/map/rain/{z}/{x}/{y}.png"}, +RainClassic:{url:"http://{s}.tile.openweathermap.org/map/rain_cls/{z}/{x}/{y}.png"},Pressure:{url:"http://{s}.tile.openweathermap.org/map/pressure/{z}/{x}/{y}.png"},PressureContour:{url:"http://{s}.tile.openweathermap.org/map/pressure_cntr/{z}/{x}/{y}.png"},Wind:{url:"http://{s}.tile.openweathermap.org/map/wind/{z}/{x}/{y}.png"},Temperature:{url:"http://{s}.tile.openweathermap.org/map/temp/{z}/{x}/{y}.png"},Snow:{url:"http://{s}.tile.openweathermap.org/map/snow/{z}/{x}/{y}.png"}}},Nokia:{options:{attribution:'Map © <a href="http://developer.here.com">Nokia</a>, Data © NAVTEQ 2012', +subdomains:"1234",devID:"xyz",appID:"abc"},variants:{normalDay:{url:"http://{s}.maptile.lbs.ovi.com/maptiler/v2/maptile/newest/normal.day/{z}/{x}/{y}/256/png8?token={devID}&app_id={appID}"},normalGreyDay:{url:"http://{s}.maptile.lbs.ovi.com/maptiler/v2/maptile/newest/normal.day.grey/{z}/{x}/{y}/256/png8?token={devID}&app_id={appID}"},satelliteNoLabelsDay:{url:"http://{s}.maptile.lbs.ovi.com/maptiler/v2/maptile/newest/satellite.day/{z}/{x}/{y}/256/png8?token={devID}&app_id={appID}"},satelliteYesLabelsDay:{url:"http://{s}.maptile.lbs.ovi.com/maptiler/v2/maptile/newest/hybrid.day/{z}/{x}/{y}/256/png8?token={devID}&app_id={appID}"}, +terrainDay:{url:"http://{s}.maptile.lbs.ovi.com/maptiler/v2/maptile/newest/terrain.day/{z}/{x}/{y}/256/png8?token={devID}&app_id={appID}"}}},Acetate:{url:"http://a{s}.acetate.geoiq.com/tiles/acetate-hillshading/{z}/{x}/{y}.png",options:{attribution:"©2012 Esri & Stamen, Data from OSM and Natural Earth",subdomains:"0123",minZoom:2,maxZoom:18},variants:{all:{},basemap:{url:"http://a{s}.acetate.geoiq.com/tiles/acetate-base/{z}/{x}/{y}.png"},terrain:{url:"http://a{s}.acetate.geoiq.com/tiles/terrain/{z}/{x}/{y}.png"}, +foreground:{url:"http://a{s}.acetate.geoiq.com/tiles/acetate-fg/{z}/{x}/{y}.png"},roads:{url:"http://a{s}.acetate.geoiq.com/tiles/acetate-roads/{z}/{x}/{y}.png"},labels:{url:"http://a{s}.acetate.geoiq.com/tiles/acetate-labels/{z}/{x}/{y}.png"},hillshading:{url:"http://a{s}.acetate.geoiq.com/tiles/hillshading/{z}/{x}/{y}.png"}}}};L.tileLayer.provider=function(a,b){return new L.TileLayer.Provider(a,b)};L.Control.Layers.Provided=L.Control.Layers.extend({initialize:function(a,b,f){var e,g=function(a){return a.replace(/\./g, +": ").replace(/([a-z])([A-Z])/g,"$1 $2")};a.length&&(function(){for(var b={},d=a.length,c=0;c<d;)"string"===typeof a[c]&&(0===c?(e=L.tileLayer.provider(a[0]),b[g(a[c])]=e):b[g(a[c])]=L.tileLayer.provider(a[c])),c++;a=b}(),this._first=e);b&&b.length&&function(){for(var a={},d=b.length,c=0;c<d;){typeof b[c]==="string"&&(a[g(b[c])]=L.tileLayer.provider(b[c]));c++}b=a}();L.Control.Layers.prototype.initialize.call(this,a,b,f)},onAdd:function(a){this._first.addTo(a);return L.Control.Layers.prototype.onAdd.call(this, +a)}});L.control.layers.provided=function(a,b,f){return new L.Control.Layers.Provided(a,b,f)}})();
\ No newline at end of file diff --git a/plugins/leaflet/scripts/leaflet-providers/license.md b/plugins/leaflet/scripts/leaflet-providers/license.md new file mode 100644 index 0000000..39084b0 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/license.md @@ -0,0 +1,9 @@ +Copyright (c) 2013 Leaflet Providers contributors
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
+
+* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
+
+_THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE._
diff --git a/plugins/leaflet/scripts/leaflet-providers/package.json b/plugins/leaflet/scripts/leaflet-providers/package.json new file mode 100644 index 0000000..6b90b9c --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/package.json @@ -0,0 +1,20 @@ +{ + "name": "leaflet-providers", + "version": "1.0.3", + "description": "An extension to Leaflet that contains configurations for various free tile providers.", + "main": "leaflet-providers.js", + "repository": { + "type": "git", + "url": "git://github.com/leaflet-extras/leaflet-providers.git" + }, + "scripts":{ + "pretest":"jshint leaflet-providers.js" + }, + "license": "BSD-2-Clause", + "bugs": { + "url": "https://github.com/leaflet-extras/leaflet-providers/issues" + }, + "devDependencies": { + "jshint": "~2.1.11" + } +} diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/L.Control.Layers.Minimap.js b/plugins/leaflet/scripts/leaflet-providers/preview/L.Control.Layers.Minimap.js new file mode 100644 index 0000000..656ace8 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/L.Control.Layers.Minimap.js @@ -0,0 +1,7 @@ +(function(){var g=function(a){var b=a.options;if(a instanceof L.TileLayer)return L.tileLayer(a._url,b);if(a instanceof L.ImageOverlay)return L.imageOverlay(a._url,a._bounds,b);if(a instanceof L.Polygon||a instanceof L.Rectangle)return L.polygon(a.getLatLngs(),b);if(a instanceof L.Marker)return L.marker(a.getLatLng(),b);if(a instanceof L.circleMarker)return L.circleMarker(a.getLatLng(),b);if(a instanceof L.Polyline||a instanceof L.MultiPolyline)return L.polyline(a.getLatLngs(),b);if(a instanceof L.MultiPolygon)return L.MultiPolygon(a.getLatLngs(), +b);if(a instanceof L.Circle)return L.circle(a.getLatLng(),a.getRadius(),b);if(a instanceof L.GeoJSON)return L.geoJson(a.toGeoJSON(),b);if(a instanceof L.LayerGroup||a instanceof L.FeatureGroup){var e=L.layerGroup();a.eachLayer(function(a){e.addLayer(g(a))});return e}};L.Control.Layers.Minimap=L.Control.Layers.extend({options:{position:"topright",topPadding:10,bottomPadding:40,overlayBackgroundLayer:L.tileLayer("http://a{s}.acetate.geoiq.com/tiles/acetate-base/{z}/{x}/{y}.png",{attribution:"©2012 Esri & Stamen, Data from OSM and Natural Earth", +subdomains:"0123",minZoom:2,maxZoom:18})},isCollapsed:function(){return!L.DomUtil.hasClass(this._container,"leaflet-control-layers-expanded")},_expand:function(){L.Control.Layers.prototype._expand.call(this);this._onListScroll()},_initLayout:function(){L.Control.Layers.prototype._initLayout.call(this);L.DomUtil.addClass(this._container,"leaflet-control-layers-minimap");L.DomEvent.on(this._container,"scroll",this._onListScroll,this)},_update:function(){L.Control.Layers.prototype._update.call(this); +this._map.on("resize",this._onResize,this);this._onResize();this._map.whenReady(this._onListScroll,this)},_addItem:function(a){var b=L.DomUtil.create("label","leaflet-minimap-container",a.overlay?this._overlaysList:this._baseLayersList),e=this._map.hasLayer(a.layer);this._createMinimap(L.DomUtil.create("div","leaflet-minimap",b),a.layer,a.overlay);var d=L.DomUtil.create("span","leaflet-minimap-label",b),c;a.overlay?(c=document.createElement("input"),c.type="checkbox",c.className="leaflet-control-layers-selector", +c.defaultChecked=e):c=this._createRadioElement("leaflet-base-layers",e);c.layerId=L.stamp(a.layer);d.appendChild(c);L.DomEvent.on(b,"click",this._onInputClick,this);L.DomUtil.create("span","",d).innerHTML=" "+a.name;return b},_onResize:function(){var a=this._map.getContainer().clientHeight;this._container.clientHeight>a-this.options.bottomPadding&&(this._container.style.overflowY="scroll");this._container.style.maxHeight=a-this.options.bottomPadding-this.options.topPadding+"px"},_onListScroll:function(){var a= +document.getElementsByClassName("leaflet-minimap-container");if(0!==a.length){var b,e;if(this.isCollapsed())b=e=-1;else{e=a.item(0).clientHeight;b=this._container;var d=b.clientHeight,c=b.scrollTop;b=Math.floor(c/e);e=Math.ceil((c+d)/e)}for(d=0;d<a.length;++d){var c=a[d].childNodes.item(0)._miniMap,f=c._layer;f&&(d>=b&&d<=e?(c.hasLayer(f)||f.addTo(c),c.invalidateSize()):c.hasLayer(f)&&c.removeLayer(f))}}},_createMinimap:function(a,b,e){var d=a._miniMap=L.map(a,{attributionControl:!1,zoomControl:!1}); +d.dragging.disable();d.touchZoom.disable();d.doubleClickZoom.disable();d.scrollWheelZoom.disable();d._layer=e?L.layerGroup([g(this.options.overlayBackgroundLayer),g(b)]):g(b);var c=this._map;c.whenReady(function(){d.setView(c.getCenter(),c.getZoom());c.sync(d)})}});L.control.layers.minimap=function(a,b,e){return new L.Control.Layers.Minimap(a,b,e)}})();
\ No newline at end of file diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/L.Map.Sync.js b/plugins/leaflet/scripts/leaflet-providers/preview/L.Map.Sync.js new file mode 100644 index 0000000..2fa0953 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/L.Map.Sync.js @@ -0,0 +1,3 @@ +(function(){L.Map=L.Map.extend({sync:function(a,b){this._initSync();var b=b||{},c=!1;this._syncMaps.forEach(function(b){a===b&&(c=!0)});c||this._syncMaps.push(a);b.noInitialSync||a.setView(this.getCenter(),this.getZoom(),{animate:!1,reset:!0});return this},unsync:function(a){var b=this;this._syncMaps&&this._syncMaps.forEach(function(c,d){a===c&&b._syncMaps.splice(d,1)});return this},_initSync:function(){if(!this._syncMaps){var a=this;this._syncMaps=[];L.extend(a,{setView:function(b,c,d,e){e||a._syncMaps.forEach(function(a){a.setView(b, +c,d,!0)});return L.Map.prototype.setView.call(this,b,c,d)},panBy:function(b,c,d){d||a._syncMaps.forEach(function(a){a.panBy(b,c,!0)});return L.Map.prototype.panBy.call(this,b,c)},_onResize:function(b,c){c||a._syncMaps.forEach(function(a){a._onResize(b,!0)});return L.Map.prototype._onResize.call(this,b)}});a.on("zoomend",function(){a._syncMaps.forEach(function(b){b.setView(a.getCenter(),a.getZoom(),{animate:!1,reset:!1})})},this);a.dragging._draggable._updatePosition=function(){L.Draggable.prototype._updatePosition.call(this); +var b=this;a._syncMaps.forEach(function(a){L.DomUtil.setPosition(a.dragging._draggable._element,b._newPos);a.fire("moveend")})}}}})})();
\ No newline at end of file diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/control.layers.minimap.css b/plugins/leaflet/scripts/leaflet-providers/preview/control.layers.minimap.css new file mode 100644 index 0000000..389cd31 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/control.layers.minimap.css @@ -0,0 +1,35 @@ +.leaflet-control-layers-expanded.leaflet-control-layers-minimap {
+ width: 240px;
+ background: rgba(255, 255, 255, 0.85);
+ box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
+
+ padding: 0;
+ border: 4px solid rgba(255, 255, 255, 0.8);
+ border-radius: 5px;
+ overflow-x: hidden;
+}
+.leaflet-minimap-container {
+ margin-bottom: 2px;
+ position: relative;
+ display: block;
+ height: 110px;
+}
+.leaflet-minimap-container .leaflet-minimap-label {
+ position: absolute;
+ display: block;
+
+ height: 22px;
+ bottom: 0;
+ left: 0;
+ padding: 2px 6px 2px 2px;
+ background-color: rgba(0, 0, 0, 0.7);
+ color: white;
+ white-space: nowrap;
+}
+.leaflet-minimap-container .leaflet-minimap-label .leaflet-control-layers-selector {
+ top: 3px;
+}
+.leaflet-minimap {
+ width: 100%;
+ height: 100%;
+}
diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/LICENSE b/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/LICENSE new file mode 100644 index 0000000..422deb7 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/LICENSE @@ -0,0 +1,24 @@ +Copyright (c) 2006, Ivan Sagalaev +All rights reserved. +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of highlight.js nor the names of its contributors + may be used to endorse or promote products derived from this software + without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY +DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; +LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND +ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/github.css b/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/github.css new file mode 100644 index 0000000..a73ba3e --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/github.css @@ -0,0 +1,127 @@ +/*
+
+github.com style (c) Vasily Polovnyov <vast@whiteants.net>
+
+*/
+
+pre code {
+ display: block; padding: 0.5em;
+ color: #333;
+ background: #f8f8ff
+}
+
+pre .comment,
+pre .template_comment,
+pre .diff .header,
+pre .javadoc {
+ color: #998;
+ font-style: italic
+}
+
+pre .keyword,
+pre .css .rule .keyword,
+pre .winutils,
+pre .javascript .title,
+pre .nginx .title,
+pre .subst,
+pre .request,
+pre .status {
+ color: #333;
+ font-weight: bold
+}
+
+pre .number,
+pre .hexcolor,
+pre .ruby .constant {
+ color: #099;
+}
+
+pre .string,
+pre .tag .value,
+pre .phpdoc,
+pre .tex .formula {
+ color: #d14
+}
+
+pre .title,
+pre .id {
+ color: #900;
+ font-weight: bold
+}
+
+pre .javascript .title,
+pre .lisp .title,
+pre .clojure .title,
+pre .subst {
+ font-weight: normal
+}
+
+pre .class .title,
+pre .haskell .type,
+pre .vhdl .literal,
+pre .tex .command {
+ color: #458;
+ font-weight: bold
+}
+
+pre .tag,
+pre .tag .title,
+pre .rules .property,
+pre .django .tag .keyword {
+ color: #000080;
+ font-weight: normal
+}
+
+pre .attribute,
+pre .variable,
+pre .lisp .body {
+ color: #008080
+}
+
+pre .regexp {
+ color: #009926
+}
+
+pre .class {
+ color: #458;
+ font-weight: bold
+}
+
+pre .symbol,
+pre .ruby .symbol .string,
+pre .lisp .keyword,
+pre .tex .special,
+pre .prompt {
+ color: #990073
+}
+
+pre .built_in,
+pre .lisp .title,
+pre .clojure .built_in {
+ color: #0086b3
+}
+
+pre .preprocessor,
+pre .pi,
+pre .doctype,
+pre .shebang,
+pre .cdata {
+ color: #999;
+ font-weight: bold
+}
+
+pre .deletion {
+ background: #fdd
+}
+
+pre .addition {
+ background: #dfd
+}
+
+pre .diff .change {
+ background: #0086b3
+}
+
+pre .chunk {
+ color: #aaa
+}
diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/highlight.pack.js b/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/highlight.pack.js new file mode 100644 index 0000000..1e6658a --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/highlightjs/highlight.pack.js @@ -0,0 +1,14 @@ +var hljs=new function(){function j(a){return a.replace(/&/gm,"&").replace(/</gm,"<").replace(/>/gm,">")}function w(a){for(a=a.firstChild;a;a=a.nextSibling){if("CODE"==a.nodeName)return a;if(!(3==a.nodeType&&a.nodeValue.match(/\s+/)))break}}function o(a,c){return Array.prototype.map.call(a.childNodes,function(a){return 3==a.nodeType?c?a.nodeValue.replace(/\n/g,""):a.nodeValue:"BR"==a.nodeName?"\n":o(a,c)}).join("")}function x(a){for(var a=(a.className+" "+a.parentNode.className).split(/\s+/), +a=a.map(function(a){return a.replace(/^language-/,"")}),c=0;c<a.length;c++)if(n[a[c]]||"no-highlight"==a[c])return a[c]}function p(a){var c=[];(function b(a,d){for(var g=a.firstChild;g;g=g.nextSibling)3==g.nodeType?d+=g.nodeValue.length:"BR"==g.nodeName?d+=1:1==g.nodeType&&(c.push({event:"start",offset:d,node:g}),d=b(g,d),c.push({event:"stop",offset:d,node:g}));return d})(a,0);return c}function y(a,c,i){function b(b){return"<"+b.nodeName+Array.prototype.map.call(b.attributes,function(b){return" "+ +b.nodeName+'="'+j(b.value)+'"'}).join("")+">"}for(var f=0,d="",g=[];a.length||c.length;){var e=(a.length&&c.length?a[0].offset!=c[0].offset?a[0].offset<c[0].offset?a:c:"start"==c[0].event?a:c:a.length?a:c).splice(0,1)[0],d=d+j(i.substr(f,e.offset-f)),f=e.offset;if("start"==e.event)d+=b(e.node),g.push(e.node);else if("stop"==e.event){var h,l=g.length;do l--,h=g[l],d+="</"+h.nodeName.toLowerCase()+">";while(h!=e.node);for(g.splice(l,1);l<g.length;)d+=b(g[l]),l++}}return d+j(i.substr(f))}function z(a){function c(b, +c){return RegExp(b,"m"+(a.cI?"i":"")+(c?"g":""))}function i(b,a){if(!b.compiled){b.compiled=!0;var d=[];if(b.k){var g={},e=function(b,a){a.split(" ").forEach(function(a){a=a.split("|");g[a[0]]=[b,a[1]?Number(a[1]):1];d.push(a[0])})};b.lR=c(b.l||hljs.IR,!0);if("string"==typeof b.k)e("keyword",b.k);else for(var h in b.k)b.k.hasOwnProperty(h)&&e(h,b.k[h]);b.k=g}if(a&&(b.bWK&&(b.b="\\b("+d.join("|")+")\\s"),b.bR=c(b.b?b.b:"\\B|\\b"),!b.e&&!b.eW&&(b.e="\\B|\\b"),b.e&&(b.eR=c(b.e)),b.tE=b.e||"",b.eW&&a.tE))b.tE+= +(b.e?"|":"")+a.tE;b.i&&(b.iR=c(b.i));void 0===b.r&&(b.r=1);b.c||(b.c=[]);for(e=0;e<b.c.length;e++)"self"==b.c[e]&&(b.c[e]=b),i(b.c[e],b);b.starts&&i(b.starts,a);h=[];for(e=0;e<b.c.length;e++)h.push(b.c[e].b);b.tE&&h.push(b.tE);b.i&&h.push(b.i);b.t=h.length?c(h.join("|"),!0):{exec:function(){return null}}}}i(a)}function s(a,c){function i(a,b){if(a.e&&a.eR.test(b))return a;if(a.eW)return i(a.parent,b)}function b(){var a;if(void 0!==e.sL)e.sL&&!n[e.sL]?a=j(h):(a=e.sL?s(e.sL,h):t(h),0<e.r&&(m+=a.keyword_count, +l+=a.r),a='<span class="'+a.language+'">'+a.value+"</span>");else if(a=j(h),e.k){var b="",c=0;e.lR.lastIndex=0;for(var d=e.lR.exec(a);d;){var b=b+a.substr(c,d.index-c),c=e,f=d,f=g.cI?f[0].toLowerCase():f[0];(c=c.k.hasOwnProperty(f)&&c.k[f])?(m+=c[1],b+='<span class="'+c[0]+'">'+d[0]+"</span>"):b+=d[0];c=e.lR.lastIndex;d=e.lR.exec(a)}a=b+a.substr(c)}return a}function f(a,b){var c=a.cN?'<span class="'+a.cN+'">':"";a.rB?(k+=c,h=""):a.eB?(k+=j(b)+c,h=""):(k+=c,h=b);e=Object.create(a,{parent:{value:e}}); +l+=a.r}function d(a,c){h+=a;if(void 0===c)return k+=b(),0;var d;a:{d=e;for(var g=0;g<d.c.length;g++){var l=d.c[g].bR.exec(c);if(l&&0==l.index){d=d.c[g];break a}}d=void 0}if(d)return k+=b(),f(d,c),d.rB?0:c.length;if(d=i(e,c)){!d.rE&&!d.eE&&(h+=c);k+=b();do e.cN&&(k+="</span>"),e=e.parent;while(e!=d.parent);d.eE&&(k+=j(c));h="";d.starts&&f(d.starts,"");return d.rE?0:c.length}if(e.i&&e.iR.test(c))throw"Illegal";h+=c;return c.length||1}var g=n[a];z(g);var e=g,h="",l=0,m=0,k="";try{for(var q,o,r=0;;){e.t.lastIndex= +r;q=e.t.exec(c);if(!q)break;o=d(c.substr(r,q.index-r),q[0]);r=q.index+o}d(c.substr(r));return{r:l,keyword_count:m,value:k,language:a}}catch(p){if("Illegal"==p)return{r:0,keyword_count:0,value:j(c)};throw p;}}function t(a){var c={keyword_count:0,r:0,value:j(a)},i=c,b;for(b in n)if(n.hasOwnProperty(b)){var f=s(b,a);f.language=b;f.keyword_count+f.r>i.keyword_count+i.r&&(i=f);f.keyword_count+f.r>c.keyword_count+c.r&&(i=c,c=f)}i.language&&(c.second_best=i);return c}function u(a,c,i){c&&(a=a.replace(/^((<[^>]+>|\t)+)/gm, +function(a,f){return f.replace(/\t/g,c)}));i&&(a=a.replace(/\n/g,"<br>"));return a}function v(a,c,i){var b=o(a,i),f=x(a);if("no-highlight"!=f){var d=f?s(f,b):t(b),f=d.language,g=p(a);if(g.length){var e=document.createElement("pre");e.innerHTML=d.value;d.value=y(g,p(e),b)}d.value=u(d.value,c,i);c=a.className;c.match("(\\s|^)(language-)?"+f+"(\\s|$)")||(c=c?c+" "+f:f);a.innerHTML=d.value;a.className=c;a.result={language:f,kw:d.keyword_count,re:d.r};d.second_best&&(a.second_best={language:d.second_best.language, +kw:d.second_best.keyword_count,re:d.second_best.r})}}function m(){m.called||(m.called=!0,Array.prototype.map.call(document.getElementsByTagName("pre"),w).filter(Boolean).forEach(function(a){v(a,hljs.tabReplace)}))}var n={};this.LANGUAGES=n;this.highlight=s;this.highlightAuto=t;this.fixMarkup=u;this.highlightBlock=v;this.initHighlighting=m;this.initHighlightingOnLoad=function(){window.addEventListener("DOMContentLoaded",m,!1);window.addEventListener("load",m,!1)};this.IR="[a-zA-Z][a-zA-Z0-9_]*";this.UIR= +"[a-zA-Z_][a-zA-Z0-9_]*";this.NR="\\b\\d+(\\.\\d+)?";this.CNR="(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)";this.BNR="\\b(0b[01]+)";this.RSR="!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|\\.|-|-=|/|/=|:|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~";this.BE={b:"\\\\[\\s\\S]",r:0};this.ASM={cN:"string",b:"'",e:"'",i:"\\n",c:[this.BE],r:0};this.QSM={cN:"string",b:'"',e:'"',i:"\\n",c:[this.BE],r:0};this.CLCM={cN:"comment",b:"//",e:"$"};this.CBLCLM= +{cN:"comment",b:"/\\*",e:"\\*/"};this.HCM={cN:"comment",b:"#",e:"$"};this.NM={cN:"number",b:this.NR,r:0};this.CNM={cN:"number",b:this.CNR,r:0};this.BNM={cN:"number",b:this.BNR,r:0};this.inherit=function(a,c){var i={},b;for(b in a)i[b]=a[b];if(c)for(b in c)i[b]=c[b];return i}}; +hljs.LANGUAGES.javascript=function(j){return{k:{keyword:"in if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const",literal:"true false null undefined NaN Infinity"},c:[j.ASM,j.QSM,j.CLCM,j.CBLCLM,j.CNM,{b:"("+j.RSR+"|\\b(case|return|throw)\\b)\\s*",k:"return throw case",c:[j.CLCM,j.CBLCLM,{cN:"regexp",b:"/",e:"/[gim]*",i:"\\n",c:[{b:"\\\\/"}]},{b:"<",e:">;",sL:"xml"}],r:0},{cN:"function",bWK:!0, +e:"{",k:"function",c:[{cN:"title",b:"[A-Za-z$_][0-9A-Za-z$_]*"},{cN:"params",b:"\\(",e:"\\)",c:[j.CLCM,j.CBLCLM],i:"[\"'\\(]"}],i:"\\[|%"}]}}(hljs);
\ No newline at end of file diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/index.html b/plugins/leaflet/scripts/leaflet-providers/preview/index.html new file mode 100644 index 0000000..45e0015 --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/index.html @@ -0,0 +1,90 @@ +<!doctype html>
+<html lang="en">
+<head>
+ <title>Leaflet Provider Demo</title>
+ <meta charset="utf-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
+
+ <style>
+ html {
+ height: 100%;
+ -moz-box-sizing: border-box;
+ -webkit-box-sizing: border-box;
+ box-sizing: border-box;
+ vertical-align: baseline;
+ }
+ body, #container { height: 100%; margin: 0; padding: 0;}
+ .map { height: 100%; }
+
+ #info {
+ background: rgba(255, 255, 255, 0.85);
+ box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
+ position: fixed;
+ width: 50%;
+ max-width: 600px;
+ left: 45%;
+ margin-left: -300px;
+ padding: 6px 8px;
+
+ border-radius: 5px;
+ font: 14px/16px Arial, Helvetica, sans-serif;
+ }
+ #info h4:first-child {
+ margin: 0 0 5px;
+ }
+ #info h4 {
+ margin: 5px 0 5px;
+ }
+ #info h4 code {
+ font-weight: normal;
+ }
+ #info .provider-names {
+ padding-bottom: 5px;
+ display: block;
+ padding-left: 15px;
+ }
+ #info pre {
+ margin: 0;
+ }
+ #info pre code {
+ font-size: 10px;
+ overflow-x: auto;
+ }
+ </style>
+ <!--Fork Me on Github ribbon, we're using the awsome version from simonwhitaker available at https://github.com/simonwhitaker/github-fork-ribbon-css -->
+ <link rel="stylesheet" href="../css/gh-fork-ribbon.css" />
+ <!--[if IE]>
+ <link rel="stylesheet" href="../css/gh-fork-ribbon.ie.css" />
+ <![endif]-->
+ <link rel="stylesheet" href="highlightjs/github.css">
+ <link rel="stylesheet" href="control.layers.minimap.css">
+</head>
+<body>
+ <div class="github-fork-ribbon-wrapper left">
+ <div class="github-fork-ribbon">
+ <a href="https://github.com/leaflet-extras/leaflet-providers">Fork me on GitHub</a>
+ </div>
+ </div>
+
+ <div id="info">
+ <h4><a href="https://github.com/leaflet-extras/leaflet-providers">Leaflet-providers preview</a></h4>
+ <p>
+ This page shows mini maps for all the layers available in <a href="https://github.com/leaflet-extras/leaflet-providers">Leaflet-providers</a>.
+ </p>
+ </div>
+ <div id="map" class="map"></div>
+
+ <script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet-src.js"></script>
+ <script src="../leaflet-providers.js"></script>
+
+ <script src="L.Map.Sync.js"></script>
+ <script src="L.Control.Layers.Minimap.js"></script>
+
+ <script src="highlightjs/highlight.pack.js"></script>
+
+ <script src="preview.js"></script>
+</body>
+</html>
diff --git a/plugins/leaflet/scripts/leaflet-providers/preview/preview.js b/plugins/leaflet/scripts/leaflet-providers/preview/preview.js new file mode 100644 index 0000000..b38cc2e --- /dev/null +++ b/plugins/leaflet/scripts/leaflet-providers/preview/preview.js @@ -0,0 +1,4 @@ +(function(){var g=new L.Map("map",{zoomControl:!1,center:[48,-3],zoom:5}),m=L.TileLayer.prototype.initialize;L.TileLayer.include({initialize:function(a,b){this._options=b;m.apply(this,arguments)}});var n=L.TileLayer.Provider.prototype.initialize;L.TileLayer.Provider.include({initialize:function(a){this._providerName=a;n.apply(this,arguments)}});var h={},k={},l=function(a){null!==a.match("(^(OpenWeatherMap|OpenSeaMap)|OpenMapSurfer.AdminBounds|Stamen.Toner(Hybrid|Lines|Labels)|Acetate.(foreground|labels|roads))")? +k[a]=L.tileLayer.provider(a):h[a]=L.tileLayer.provider(a)},e;for(e in L.TileLayer.Provider.providers)if(null===e.match(/^(MapBox|OpenSeaMap)/))if(L.TileLayer.Provider.providers[e].variants)for(var o in L.TileLayer.Provider.providers[e].variants)l(e+"."+o);else l(e);L.control.layers.minimap(h,k,{collapsed:!1}).addTo(g);h["OpenStreetMap.Mapnik"].addTo(g);g.addControl(new (L.Control.extend({options:{position:"topleft"},onAdd:function(a){var b=L.DomUtil.get("info");L.DomEvent.disableClickPropagation(b); +L.DomUtil.create("h4",null,b).innerHTML="Provider names for <code>leaflet-providers.js</code>";var e=L.DomUtil.create("code","provider-names",b);L.DomUtil.create("h4","",b).innerHTML="Plain JavaScript:";var f=L.DomUtil.create("pre",null,b),j=L.DomUtil.create("code","javascript",f),f=function(b){j.innerHTML="";var f=[],g;for(g in a._layers){var d=a._layers[g];f.push(d._providerName);var c=d._providerName.replace(".","_");if(!b||!("layerremove"===b.type&&d===b.layer)){var c="var "+c+" = L.tileLayer('"+ +d._url+"', {\n",d=d._options,h=!0,i;for(i in d)h?h=!1:c+=",\n",c+="\t"+i+": ",c="string"===typeof d[i]?c+("'"+d[i].replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")+"'"):c+d[i];c+="\n});\n";j.innerHTML+=c;e.innerHTML=f.join(", ")}}hljs.highlightBlock(j)};a.on({layeradd:f,layerremove:f});f();return b}})))})();
\ No newline at end of file diff --git a/plugins/leaflet/scripts/mapParser.html b/plugins/leaflet/scripts/mapParser.html new file mode 100644 index 0000000..5092536 --- /dev/null +++ b/plugins/leaflet/scripts/mapParser.html @@ -0,0 +1,113 @@ +<!DOCTYPE html>
+<html>
+ <head>
+ <script src="http://cdn.leafletjs.com/leaflet-0.7/leaflet.js"></script>
+ <link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" />
+
+ <script src="leaflet-providers/leaflet-providers.js"></script>
+
+ <script src="Leaflet-MiniMap/src/Control.MiniMap.js"></script>
+ <link rel="stylesheet" href="Leaflet-MiniMap/src/Control.MiniMap.css" />
+
+ <script type="text/javascript" charset="utf-8">
+ // Function to parse the URL search query parameters.
+ // It will give A, B, C given http://www.somelink.com?lat=A&lon=B&zoom=C
+ // See "http://javascriptproductivity.blogspot.com/" +
+ // "2013/02/get-url-variables-with-javascript.html".
+ function getParams(){
+ // Make an object variable to hold
+ // the parsed URL parameters' keys and vlaues.
+ var params = {};
+
+ // Remove the '?' character after the base url.
+ // x.substring(i) will return the substring of x starting at index i
+ // up to the end of the string.
+ // Drupal CMS might have a path like this (two '?' characters):
+ // mapParser.html?t=E3OD?lat=14.6760413&lon=121.0437003&...
+ // We need to handle this case also.
+ var lastIndex = window.location.search.lastIndexOf("?")
+
+ // Get the substring not including any '?' character.
+ var query_string = window.location.search.substring(lastIndex + 1);
+
+ // Explode the string using the '&' character.
+ var query_string_parts = query_string.split('&');
+
+ // Traverse the exploded tokens.
+ for(i in query_string_parts) {
+ // Explode the string using '=' to isolate keys and values.
+ key_value = query_string_parts[i].split('=');
+
+ // Insert a new key and set it to the current parsed value.
+ params[key_value[0]] = key_value[1];
+ }
+
+ // Return the parameter object contianing the keys and values.
+ return params;
+ }
+ </script>
+ <style>
+ </style>
+ </head>
+ <body>
+ <div id='map_container' style="width:95%px; height:590px;" data-zoom=""></div>
+
+ <script type="text/javascript">
+ // Get the DOM node to which we will append the map.
+ // In our setup the map container is a DIV element.
+ var mapDiv = document.getElementById("map_container");
+
+ // Parse the query parameters in the URL to obtain the
+ // LAT, LON, and ZOOM values.
+ queryString = getParams();
+
+ // Convert the parameters to their numeric equivalent.
+ // Otherwise, it will not work.
+ var latitude = Number(queryString["lat"]);
+ var longitude = Number(queryString["lon"]);
+
+ // Retrieve and adjust the map's height by 10px for better layout.
+ var mapHeight = Number(queryString["height"]) - 10;
+ mapDiv.style.height = String(mapHeight) + "px";
+
+ // Retrieve the zoom level.
+ var zoom = Number(queryString["zoom"]);
+
+ var tile = queryString["tile"];
+ var minimap = queryString["minimap"];
+
+ // Create a map in the the target DOM container.
+ // Set the view to a given place and zoom value.
+ var map = L.map('map_container').setView([latitude, longitude], zoom);
+
+ // Choose the Map Tile provider "Esri.WorldTopoMap"
+ var mapTileProvider = tile;
+
+ // Set the base map.
+ var mapTile = L.tileLayer.provider(mapTileProvider, { attribution: "Map Tile: " + mapTileProvider });
+ mapTile.addTo(map);
+
+ // Add a marker in the given location.
+ var p1 = L.marker([latitude, longitude]);
+ p1.addTo(map);
+
+ // Check if MiniMap needs to be shown also.
+ if (minimap == "on") {
+ // Create a new Tile Layer for the MiniMap.
+ // Per documentation, do not reuse the existing Tile object
+ // to avoid rendering issues.
+ var mapTile2 = L.tileLayer.provider(mapTileProvider);
+ var miniMap = new L.Control.MiniMap(mapTile2).addTo(map);
+ }
+
+ // Initialize the zoom data attribute.
+ mapDiv.setAttribute("data-zoom", map.getZoom());
+
+ // Add an event listener that will keep track the changes in the
+ // map's zoom levels and it will update the data attribute accordingly.
+ map.on('zoomend', function(e) {
+ mapDiv.setAttribute("data-zoom", map.getZoom());
+ });
+ </script>
+ </body>
+</html>
|
