This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-02-07
Channels
- # announcements (32)
- # asami (11)
- # babashka (5)
- # babashka-sci-dev (4)
- # beginners (65)
- # biff (11)
- # calva (35)
- # clerk (2)
- # clj-kondo (14)
- # clj-on-windows (4)
- # clojars (4)
- # clojure (122)
- # clojure-canada (1)
- # clojure-europe (31)
- # clojure-italy (6)
- # clojure-nl (1)
- # clojure-norway (7)
- # clojure-spec (3)
- # clojure-uk (2)
- # clojurescript (3)
- # core-async (7)
- # core-logic (1)
- # data-science (13)
- # datalog (3)
- # datavis (3)
- # datomic (15)
- # deps-new (4)
- # emacs (34)
- # figwheel-main (1)
- # fulcro (1)
- # funcool (1)
- # holy-lambda (10)
- # lsp (41)
- # malli (24)
- # membrane (5)
- # midje (1)
- # off-topic (5)
- # polylith (3)
- # proletarian (6)
- # re-frame (6)
- # reitit (6)
- # remote-jobs (4)
- # sci (1)
- # shadow-cljs (96)
- # sql (31)
- # testing (23)
- # xtdb (49)
question relating to vega lite, assuming I have two geo json sources, one a map and one a coordinate, how do I render both in the same view?
{:width 650 :height 650
:config {:projection {:type "mercator" :center [10.4515 51.1657]}}
:layer [#_{:data {:url ""
:format {:type "topojson" #_#_:feature "DEU_adm2"}}
:mark {:type "geoshape" :fill "lightgray" :stroke "white"}}
{:data {:url ""
:format {:type "topojson"}}
:mark {:type "geoshape" :fill "lightgray" :stroke "white"}}]}
Either works independently but I can't draw both togetherEnded up finding the solution by the very @metasoarous , posting for posterity https://github.com/vega/vega-lite/issues/3689
🎉 2
🙌 2
{:width 650 :height 650
:config {:projection {:type "mercator" :center [10.4515 51.1657]}}
:layer [#_{:data {:url ""
:format {:type "topojson" #_#_:feature "DEU_adm2"}}
:mark {:type "geoshape" :fill "lightgray" :stroke "white"}}
{:data {:url ""
:format {:type "topojson"}}
:mark {:type "geoshape" :fill "lightgray" :stroke "white"}}]}
Either works independently but I can't draw both togetherEnded up finding the solution by the very @metasoarous , posting for posterity https://github.com/vega/vega-lite/issues/3689
🎉 2
🙌 2