[gnome-maps/wip/mlundblad/maps-uri: 2/3] placeEntry: Allow pasting maps: URIs into the search entry
- From: Marcus Lundblad <mlundblad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-maps/wip/mlundblad/maps-uri: 2/3] placeEntry: Allow pasting maps: URIs into the search entry
- Date: Wed, 17 Nov 2021 21:40:33 +0000 (UTC)
commit 14a2747dc3ad1855606161ec6d8934de43a69328
Author: Marcus Lundblad <ml update uu se>
Date: Wed Nov 3 09:20:46 2021 +0100
placeEntry: Allow pasting maps: URIs into the search entry
src/placeEntry.js | 14 ++++++++++++++
1 file changed, 14 insertions(+)
---
diff --git a/src/placeEntry.js b/src/placeEntry.js
index 5bbfd348..c39823cd 100644
--- a/src/placeEntry.js
+++ b/src/placeEntry.js
@@ -34,6 +34,7 @@ const Location = imports.location;
const Place = imports.place;
const PlaceStore = imports.placeStore;
const PlacePopover = imports.placePopover;
+const URIS = imports.uris;
const Utils = imports.utils;
// minimum number of characters to start completion
@@ -225,6 +226,19 @@ var PlaceEntry = GObject.registerClass({
parsed = true;
}
+ if (this.text.startsWith('maps:')) {
+ let query = URIS.parseMapsURI(this.text);
+
+ if (query) {
+ this.text = query;
+ } else {
+ let msg = _("Failed to parse Maps URI");
+ Utils.showDialog(msg, Gtk.MessageType.ERROR, this.get_toplevel());
+ }
+
+ parsed = true;
+ }
+
let parsedLocation = Place.Place.parseCoordinates(this.text);
if (parsedLocation) {
/* if the place was a parsed OSM coordinate URL, it will have
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]