Skip to content

Commit cd16225

Browse files
authored
Replace mapbox with googlemaps (#37)
1 parent 4bb5e1b commit cd16225

File tree

15 files changed

+250
-723
lines changed

15 files changed

+250
-723
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
VUE_APP_MAP_KEY=''

.env.production

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
VUE_APP_DVS_WS_URL=ws://dvs.reactive-labs.io:1081
22
VUE_APP_DVS_REST_URL=http://dvs.reactive-labs.io:1081/v1/rest/health
3+
VUE_APP_MAP_KEY='?key=AIzaSyBnjTxdBd-qjRtLkfWde-mYvyvWqDnQNB8'

dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><meta name=theme-color content=#EB6400><link href=https://api.tiles.mapbox.com/mapbox-gl-js/v0.54.0/mapbox-gl.css rel=stylesheet><!--[if IE]><link rel="icon" href="./img/logo_geo.png"><![endif]--><title>Data visualization Streaming</title><meta name=description content="Real time data dashboard powered by Kafka Streams and KSQL."><meta name=og:title content=K·Geostream><meta name=og:description content="Real time data dashboard powered by Kafka Streams and KSQL."><meta name=og:type content=website><meta name=image property=og:image content=./img/kgs.png><link href=/css/chunk-37db2cf7.94829dd9.css rel=prefetch><link href=/css/chunk-4ec1debd.5cb997b2.css rel=prefetch><link href=/css/chunk-69fa263c.1d242d2c.css rel=prefetch><link href=/js/chunk-37db2cf7.9e82ef29.js rel=prefetch><link href=/js/chunk-4ec1debd.cd36a65b.js rel=prefetch><link href=/js/chunk-69fa263c.03f3cc37.js rel=prefetch><link href=/css/app.6c5fb3cd.css rel=preload as=style><link href=/css/chunk-vendors.81e18a23.css rel=preload as=style><link href=/js/app.673a3e5d.js rel=preload as=script><link href=/js/chunk-vendors.ae600cc2.js rel=preload as=script><link href=/css/chunk-vendors.81e18a23.css rel=stylesheet><link href=/css/app.6c5fb3cd.css rel=stylesheet><link rel=icon type=image/png sizes=32x32 href=/img/icons/favicon-32x32.png><link rel=icon type=image/png sizes=16x16 href=/img/icons/favicon-16x16.png><link rel=manifest href=/manifest.json><meta name=theme-color content=#4DBA87><meta name=apple-mobile-web-app-capable content=no><meta name=apple-mobile-web-app-status-bar-style content=default><meta name=apple-mobile-web-app-title content=kafka-geostream-ui><link rel=apple-touch-icon href=/img/icons/apple-touch-icon-152x152.png><link rel=mask-icon href=/img/icons/safari-pinned-tab.svg color=#4DBA87><meta name=msapplication-TileImage content=/img/icons/msapplication-icon-144x144.png><meta name=msapplication-TileColor content=#000000></head><body><noscript><strong>We're sorry but Kafka DVS doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.ae600cc2.js></script><script src=/js/app.673a3e5d.js></script></body></html>
1+
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><meta name=theme-color content=#EB6400><script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBnjTxdBd-qjRtLkfWde-mYvyvWqDnQNB8" async defer></script><!--[if IE]><link rel="icon" href="./img/logo_geo.png"><![endif]--><title>Data visualization Streaming</title><meta name=description content="Real time data dashboard powered by Kafka Streams and KSQL."><meta name=og:title content=K·Geostream><meta name=og:description content="Real time data dashboard powered by Kafka Streams and KSQL."><meta name=og:type content=website><meta name=image property=og:image content=./img/kgs.png><link href=/css/chunk-3026f99d.da1165c5.css rel=prefetch><link href=/css/chunk-637cfb14.b48b18fb.css rel=prefetch><link href=/css/chunk-6cd7731c.d2674a45.css rel=prefetch><link href=/js/chunk-3026f99d.cc5f4e7c.js rel=prefetch><link href=/js/chunk-637cfb14.d723a82a.js rel=prefetch><link href=/js/chunk-6cd7731c.a627dd72.js rel=prefetch><link href=/css/app.5c9d83a7.css rel=preload as=style><link href=/css/chunk-vendors.81e18a23.css rel=preload as=style><link href=/js/app.504fb826.js rel=preload as=script><link href=/js/chunk-vendors.719e0f4f.js rel=preload as=script><link href=/css/chunk-vendors.81e18a23.css rel=stylesheet><link href=/css/app.5c9d83a7.css rel=stylesheet><link rel=icon type=image/png sizes=32x32 href=/img/icons/favicon-32x32.png><link rel=icon type=image/png sizes=16x16 href=/img/icons/favicon-16x16.png><link rel=manifest href=/manifest.json><meta name=theme-color content=#4DBA87><meta name=apple-mobile-web-app-capable content=no><meta name=apple-mobile-web-app-status-bar-style content=default><meta name=apple-mobile-web-app-title content=kafka-geostream-ui><link rel=apple-touch-icon href=/img/icons/apple-touch-icon-152x152.png><link rel=mask-icon href=/img/icons/safari-pinned-tab.svg color=#4DBA87><meta name=msapplication-TileImage content=/img/icons/msapplication-icon-144x144.png><meta name=msapplication-TileColor content=#000000></head><body><noscript><strong>We're sorry but Kafka DVS doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script src=/js/chunk-vendors.719e0f4f.js></script><script src=/js/app.504fb826.js></script></body></html>

dist/service-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
importScripts("https://storage.googleapis.com/workbox-cdn/releases/3.6.3/workbox-sw.js");
1515

1616
importScripts(
17-
"/precache-manifest.ede9cfaabf07db0aec5133f421328759.js"
17+
"/precache-manifest.35ad4110e24b2fe69049e2194dda2a10.js"
1818
);
1919

2020
workbox.core.setCacheNameDetails({prefix: "kafka-geostream-ui"});

0 commit comments

Comments
 (0)