query-ad46057fca78818aaaf972f0d89c7a42

rq turtle/ttl

Linking external URLs in map viewIs it possible to make external URLs in the map view clickable? For example, the Quora URLs in (caution: slow to load!):

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
SELECT ?item ?itemLabel ?coords (CONCAT("https://www.quora.com/topic/",?quora) AS ?quoralink) WHERE {
 ?item wdt:P3417 ?quora .
 ?item wdt:P625 ?coords
 SERVICE wikibase:label { bd:serviceParam wikibase:language "en" }
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?coords"):::projected v1("?item"):::projected v2("?quora"):::projected v4("?quoralink") c4(["bd:serviceParam"]):::iri c6(["en"]):::literal v1 --"wdt:P3417"--> v2 v1 --"wdt:P625"--> v3 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c4 --"wikibase:language"--> c6 end bind0[/"concat('https://www.quora.com/topic/',?quora)"/] v2 --o bind0 bind0 --as--o v4