[gnome-maps/wip/mlundblad/photon-geocode: 7/13] Add Geocoder factory
- From: Marcus Lundblad <mlundblad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-maps/wip/mlundblad/photon-geocode: 7/13] Add Geocoder factory
- Date: Sun, 2 Jun 2019 13:37:25 +0000 (UTC)
commit 016f64bcae528724d82bae34c7c97e65dd2b3454
Author: Marcus Lundblad <ml update uu se>
Date: Sat May 25 11:50:17 2019 +0200
Add Geocoder factory
Instanciates a geocoder implementation
(Photon or legacy GraphHopper) depending
on the service definition.
src/geocode.js | 39 ++++++++++++++++++++++++++++++++++++
src/org.gnome.Maps.src.gresource.xml | 1 +
2 files changed, 40 insertions(+)
---
diff --git a/src/geocode.js b/src/geocode.js
new file mode 100644
index 0000000..7623684
--- /dev/null
+++ b/src/geocode.js
@@ -0,0 +1,39 @@
+/* -*- Mode: JS2; indent-tabs-mode: nil; js2-basic-offset: 4 -*- */
+/* vim: set et ts=4 sw=4: */
+/*
+ * Copyright (c) 2019 Marcus Lundblad.
+ *
+ * GNOME Maps is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by the
+ * Free Software Foundation; either version 2 of the License, or (at your
+ * option) any later version.
+ *
+ * GNOME Maps is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with GNOME Maps; if not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author: Marcus Lundblad <ml update uu se>
+ */
+
+const Service = imports.service;
+const GraphHopperGeocode = imports.graphHopperGeocode;
+const PhotonGeocode = imports.photonGeocode;
+
+var _geocoder = null;
+
+function getGeocoder() {
+ if (!_geocoder) {
+ if (Service.getService().photonGeocode)
+ _geocoder = new PhotonGeocode.PhotonGeocode();
+ else
+ _geocoder = new GraphHopperGeocode.GraphHopperGeocode();
+ }
+
+ return _geocoder;
+}
+
+
diff --git a/src/org.gnome.Maps.src.gresource.xml b/src/org.gnome.Maps.src.gresource.xml
index c02af5e..dd340dc 100644
--- a/src/org.gnome.Maps.src.gresource.xml
+++ b/src/org.gnome.Maps.src.gresource.xml
@@ -17,6 +17,7 @@
<file>foursquareGoaAuthorizer.js</file>
<file>geoclue.js</file>
<file>geocodeService.js</file>
+ <file>geocode.js</file>
<file>geoJSONShapeLayer.js</file>
<file>geoJSONSource.js</file>
<file>geoJSONStyle.js</file>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]