-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
codelab_rebuild.yaml
1493 lines (1454 loc) · 71.2 KB
/
codelab_rebuild.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: Google Maps in Flutter
steps:
- name: step_3
steps:
- name: Remove generated code
rmdir: step_3
- name: Create project
flutter: create google_maps_in_flutter --platforms android,ios,web
- name: Strip DEVELOPMENT_TEAM
strip-lines-containing: DEVELOPMENT_TEAM =
path: google_maps_in_flutter/ios/Runner.xcodeproj/project.pbxproj
- name: Update dependencies
path: google_maps_in_flutter
flutter: pub upgrade --major-versions
- name: Configure analysis_options.yaml
path: google_maps_in_flutter/analysis_options.yaml
replace-contents: |
include: ../../analysis_options.yaml
analyzer:
exclude:
- lib/src/*.g.dart
- name: dart fix
dart: fix --apply
path: google_maps_in_flutter
- name: Add google_maps_flutter
path: google_maps_in_flutter
flutter: pub add google_maps_flutter
- name: Remove the README.md
rm: google_maps_in_flutter/README.md
- name: VSCode config
path: google_maps_in_flutter
mkdir: .vscode
- name: Add launch.json
path: google_maps_in_flutter/.vscode/launch.json
replace-contents: |
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "google_maps_in_flutter",
"request": "launch",
"type": "dart"
}
]
}
- name: Patch android/app/build.gradle
path: google_maps_in_flutter/android/app/build.gradle
patch-u: |
--- b/google-maps-in-flutter/step_3/android/app/build.gradle
+++ a/google-maps-in-flutter/step_3/android/app/build.gradle
@@ -22,9 +22,9 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId = "com.example.google_maps_in_flutter"
- // You can update the following values to match your application needs.
- // For more information, see: https://flutter.dev/to/review-gradle-config.
- minSdk = flutter.minSdkVersion
+ // Minimum Android version for Google Maps SDK
+ // https://developers.google.com/maps/flutter-package/config#android
+ minSdk = 21
targetSdk = flutter.targetSdkVersion
versionCode = flutter.versionCode
versionName = flutter.versionName
- name: Patch ios/Podfile
platforms: [ macos ]
path: google_maps_in_flutter/ios/Podfile
patch-u: |
--- b/google-maps-in-flutter/step_3/ios/Podfile
+++ a/google-maps-in-flutter/step_3/ios/Podfile
@@ -1,5 +1,6 @@
-# Uncomment this line to define a global platform for your project
-# platform :ios, '12.0'
+# Google Maps SDK requires platform version 14
+# https://developers.google.com/maps/flutter-package/config#ios
+platform :ios, '14.0'
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'
- name: Patch ios/Flutter/AppFrameworkInfo.plist
path: google_maps_in_flutter/ios/Flutter/AppFrameworkInfo.plist
patch-u: |
--- a/google-maps-in-flutter/step_3/ios/Flutter/AppFrameworkInfo.plist
+++ b/google-maps-in-flutter/step_3/ios/Flutter/AppFrameworkInfo.plist
@@ -21,6 +21,6 @@
<key>CFBundleVersion</key>
<string>1.0</string>
<key>MinimumOSVersion</key>
- <string>12.0</string>
+ <string>14.0</string>
</dict>
</plist>
- name: Patch lib/main.dart
path: google_maps_in_flutter/lib/main.dart
patch-u: |
--- b/google-maps-in-flutter/step_3/lib/main.dart
+++ a/google-maps-in-flutter/step_3/lib/main.dart
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2019 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import 'package:flutter/material.dart';
void main() {
- name: Patch test/widget_test.dart
path: google_maps_in_flutter/test/widget_test.dart
patch-u: |
--- b/google-maps-in-flutter/step_3/test/widget_test.dart
+++ a/google-maps-in-flutter/step_3/test/widget_test.dart
@@ -1,3 +1,19 @@
+/*
+ * Copyright 2019 Google LLC
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * https://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
// This is a basic Flutter widget test.
//
// To perform an interaction with a widget in your test, use the WidgetTester
- name: flutter clean
path: google_maps_in_flutter
flutter: clean
- name: flutter pub upgrade
path: google_maps_in_flutter
flutter: pub upgrade
- name: build Android
platforms: [ macos ]
path: google_maps_in_flutter
flutter: build apk
- name: build iOS
platforms: [ macos ]
path: google_maps_in_flutter
flutter: build ios --simulator
- name: build web
path: google_maps_in_flutter
flutter: build web
- name: Copy step_3
copydir:
from: google_maps_in_flutter
to: step_3
- name: step_4
steps:
- name: Remove generated code
rmdir: step_4
- name: Patch android/app/src/main/AndroidManifest.xml
path: google_maps_in_flutter/android/app/src/main/AndroidManifest.xml
patch-u: |
--- b/google-maps-in-flutter/step_4/android/app/src/main/AndroidManifest.xml
+++ a/google-maps-in-flutter/step_4/android/app/src/main/AndroidManifest.xml
@@ -3,6 +3,11 @@
android:label="google_maps_in_flutter"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
+
+ <!-- TODO: Add your Google Maps API key here -->
+ <meta-data android:name="com.google.android.geo.API_KEY"
+ android:value="YOUR-KEY-HERE"/>
+
<activity
android:name=".MainActivity"
android:exported="true"
- name: Patch ios/Runner/AppDelegate.swift
path: google_maps_in_flutter/ios/Runner/AppDelegate.swift
patch-u: |
--- b/google-maps-in-flutter/step_4/ios/Runner/AppDelegate.swift
+++ a/google-maps-in-flutter/step_4/ios/Runner/AppDelegate.swift
@@ -1,5 +1,6 @@
import Flutter
import UIKit
+import GoogleMaps
@main
@objc class AppDelegate: FlutterAppDelegate {
@@ -8,6 +9,10 @@ import UIKit
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
) -> Bool {
GeneratedPluginRegistrant.register(with: self)
+
+ // TODO: Add your Google Maps API key
+ GMSServices.provideAPIKey("YOUR-API-KEY")
+
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
}
}
- name: Patch web/index.html
path: google_maps_in_flutter/web/index.html
patch-u: |
--- b/google-maps-in-flutter/step_4/web/index.html
+++ a/google-maps-in-flutter/step_4/web/index.html
@@ -29,6 +29,9 @@
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
+ <!-- Add your Google Maps API key here -->
+ <script src="https://maps.googleapis.com/maps/api/js?key=YOUR-KEY-HERE"></script>
+
<title>google_maps_in_flutter</title>
<link rel="manifest" href="manifest.json">
</head>
- name: Replace lib/main.dart
path: google_maps_in_flutter/lib/main.dart
replace-contents: |
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'package:flutter/material.dart';
import 'package:google_maps_flutter/google_maps_flutter.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
late GoogleMapController mapController;
final LatLng _center = const LatLng(45.521563, -122.677433);
void _onMapCreated(GoogleMapController controller) {
mapController = controller;
}
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
useMaterial3: true,
colorSchemeSeed: Colors.green[700],
),
home: Scaffold(
appBar: AppBar(
title: const Text('Maps Sample App'),
elevation: 2,
),
body: GoogleMap(
onMapCreated: _onMapCreated,
initialCameraPosition: CameraPosition(
target: _center,
zoom: 11.0,
),
),
),
);
}
}
- name: Add test/widget_test.dart
path: google_maps_in_flutter/test/widget_test.dart
replace-contents: |
/*
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import 'package:flutter_test/flutter_test.dart';
import 'package:google_maps_in_flutter/main.dart';
void main() {
testWidgets('Do nothing test', (tester) async {
// Build our app and trigger a frame.
await tester.pumpWidget(const MyApp());
});
}
- name: Copy step_4
copydir:
from: google_maps_in_flutter
to: step_4
- name: step_5
steps:
- name: Remove generated code
rmdir: step_5
- name: Add http json_annotation json_serializable build_runner
path: google_maps_in_flutter
flutter: pub add http json_annotation json_serializable dev:build_runner
- name: Mkdir assets
path: google_maps_in_flutter
mkdir: assets
- name: Add assets/locations.json
path: google_maps_in_flutter/assets/locations.json
replace-contents: |
{
"offices": [
{
"address": "Aabogade 15\n8200 Aarhus\nDenmark",
"id": "aarhus",
"image": "https://lh3.googleusercontent.com/tpBMFN5os8K-qXIHiAX5SZEmN5fCzIGrj9FdJtbZPUkC91ookSoY520NYn7fK5yqmh1L1m3F2SJA58v6Qps3JusdrxoFSwk6Ajv2K88",
"lat": 56.172249,
"lng": 10.187372,
"name": "Aarhus",
"phone": "",
"region": "europe"
},
{
"address": "Claude Debussylaan 34\n1082 MD, Amsterdam\nNetherlands",
"id": "amsterdam",
"image": "https://lh3.googleusercontent.com/gG1zKXcSmRyYWHwUn2Z0MITpdqwb52RAEp3uthG2J5Xl-4_Wz7_WmoM6T_TBg6Ut3L1eF-8XENO10sxVIFdQHilj8iRG29wROpSoug",
"lat": 52.337801,
"lng": 4.872066,
"name": "Amsterdam",
"phone": "",
"region": "europe"
},
{
"address": "2300 Traverwood Dr.\nAnn Arbor, MI 48105\nUnited States",
"id": "ann-arbor",
"image": "https://lh3.googleusercontent.com/Iim0OVcAgg9vmXc5ADn9KvOQFplrMZ8hBTg2biiTtuWPy_r56cy4Byx1ROk6coGt7knQdmx_jO45VX1kiCJZ0QzEtS97AP_BYG4F2w",
"lat": 42.3063848,
"lng": -83.7140833,
"name": "Ann Arbor",
"phone": "+1 734-332-6500",
"region": "north-america"
},
{
"address": "Fragkokklisias 7\nAthens 151 25\nGreece",
"id": "athens",
"image": "https://lh3.googleusercontent.com/XroZnqewSrO6KuvXM5hDHtjUJzUcRQLZYfCKs4jP44dKezRvNx58uxaqUKS4fQ2eXzG2TpJNJ1X2xtfBe7Prl5hSG_xjPEF1xLtFodM",
"lat": 38.03902,
"lng": 23.804595,
"name": "Athens",
"phone": "",
"region": "europe"
},
{
"address": "10 10th Street NE\nAtlanta, GA 30309\nUnited States",
"id": "atlanta",
"image": "https://lh3.googleusercontent.com/py7Qvqqoec1MB0dMKnGWn7ju9wET_dIneTb24U-ri8XAsECJnOaBoNmvfa51PIaC0rlsyQvQXvAK8RdLqpkhpkRSzmhNKqb-tY2_",
"lat": 33.781827,
"lng": -84.387301,
"name": "Atlanta",
"phone": "+1 404-487-9000",
"region": "north-america"
},
{
"address": "500 W 2nd St\nSuite 2900\nAustin, TX 78701\nUnited States",
"id": "austin",
"image": "https://lh3.googleusercontent.com/WFaJgWPdd7xPL7CQHizlqEzLDjT_GUAiWHIWUM0PiVSsv8q3Rjt9QgbyQazuQwYfN5qLORajv8eKSHlKwZo-M89T2Y12zFSxSIme08c",
"lat": 30.266035,
"lng": -97.749237,
"name": "Austin",
"phone": "+1 512-343-5283",
"region": "north-america"
},
{
"address": "No. 3, RMZ Infinity \u2013 Tower E\nOld Madras Road\n4th and 5th Floors\nBangalore, 560 016, India",
"id": "bangalore",
"image": "https://lh3.googleusercontent.com/YDyQevoY-D0eZQ9sYHp8dQjpFF5JpLfLK-0OM-uJK1oNK3_LRnGJAM0uXi9qb9UigKnVIIXlIgidxhRlnaB_FPtUOqPzrsCSiFZyoQ",
"lat": 12.99332,
"lng": 77.660176,
"name": "Bangalore",
"phone": "+91-80-67218000",
"region": "asia-pacific"
},
{
"address": "57 Park Ventures Ecoplex\n14th Floor, Wireless Road\nBangkok, 10330, Thailand",
"id": "bangkok",
"image": "https://lh3.googleusercontent.com/nh9uOUPj6iWjKZSHIrnkfGhIWGBb8thguRM5_ehCOkyF-qfwzYciDJFVRSvQ6QxlSA6eZUMkzgdW9zR0Gab2ZZPg8NlB7V_V3wB5",
"lat": 13.742866,
"lng": 100.547983,
"name": "Bangkok",
"phone": "",
"region": "asia-pacific"
},
{
"address": "6th Floor, Tower B, Raycom InfoTech Park\nNo. 2 Kexueyuan South Road\nZhongguancun Beijing 100190",
"id": "beijing",
"image": "https://lh3.googleusercontent.com/v_tD3VvC8-dnhqSF9xhj5Hx7F_bb3-wieM19i-Ho2C3by6mt7-JpPc7KsYVHUZFqQl5ON3adVEV1N4OlzSvHLrr3sr4GtXErDbGC",
"lat": 39.9848878,
"lng": 116.3265708,
"name": "Beijing",
"phone": "+86-10-62503000",
"region": "asia-pacific"
},
{
"address": "Boulevard Corporate Tower\nAv. dos Andradas, 3000 - Andares 14-17\nSanta Efig\u00eania\nBelo Horizonte\n30260-070, Brazil",
"id": "belo-horizonte",
"image": "https://lh3.googleusercontent.com/f7F8gTi9GSgAZR3lv24I1yb-D0wRlDy0lQTcxCB4yJGtSgxrWdKoB3dX3J8SMrjYLwOSXquO3LuGFUE82QUjzVK9buHGNIRUPGpqM3E",
"lat": -19.920225,
"lng": -43.920845,
"name": "Belo Horizonte",
"phone": "+55-31-2128-6800",
"region": "latin-america"
},
{
"address": "Tucholskystra\u00dfe 2\n10117 Berlin\nGermany",
"id": "berlin",
"image": "https://lh3.googleusercontent.com/XcPyEMiSlLdZJq7nh3orGy3UqjtUHdhxXiwn52ZY47wfEChfZNDO78zDy9H0tBeegogZBZpIE0Q9mdVBGN4aQ0M5vfgz8ZWMEe43Mg",
"lat": 52.5231079,
"lng": 13.39203120000002,
"name": "Berlin",
"phone": "+49 30 303986300",
"region": "europe"
},
{
"address": "Carrera 11A 94 - 45\nCentro Empresarial Oxo Centre\nBogota, Colombia",
"id": "bogota",
"image": "https://lh3.googleusercontent.com/_APoV1zAR0g5_pXVDlT2ovgNQfr3zvjOuj4HFHViiy2ahyjapJMXlYRE48qYMyFTWXJybbK4psz-fQ82QhMhO0keYJ27I8tNTHe_ww",
"lat": 4.678267,
"lng": -74.046901,
"name": "Bogota",
"phone": "+57 (1) 5939400",
"region": "latin-america"
},
{
"address": "2600 Pearl Street\nBoulder, CO 80302\nUnited States",
"id": "boulder",
"image": "https://lh3.googleusercontent.com/lF9KBhOolmb958FFmMdLwFcedQAn1wEsVleBRrJQmyfhvD3u4lwCneR09ADJ9sG4tMBP5LDSLkn9bkbavzyqqql_0X7hj39dzl-n1w",
"lat": 40.021693,
"lng": -105.260139,
"name": "Boulder",
"phone": "+1 303-245-0086",
"region": "north-america"
},
{
"address": "2930 Pearl St\nBoulder, CO 80301\nUnited States",
"id": "boulder-pearl",
"image": "https://lh3.googleusercontent.com/_JvBccdhLZSIxenZEubM2Qu8Eky6udmnwekH7BhjI1EUo8mCDXDHa0Z7mfNzvZtlmiXI6b6w8U-PY47oUQhPtvYazGS4mG8S61Rr",
"lat": 40.021948,
"lng": -105.253978,
"name": "Boulder \u2013 Pearl Place",
"phone": "+1 303-245-0086",
"region": "north-america"
},
{
"address": "3333 Walnut St\nBoulder CO, 80301\nUnited States",
"id": "boulder-walnut",
"image": "https://lh3.googleusercontent.com/nGvIFmh9d2J68l-U7gYdQAqLZkLNNS_pqhNMtGopMujEpZEneMSH75NFr1WmXJC0GafDLyTVSpnqbuj5Tfjjjk889Zk23dIggqNN",
"lat": 40.01993,
"lng": -105.24936,
"name": "Boulder \u2013 Walnut",
"phone": "+1 303-245-0086",
"region": "north-america"
},
{
"address": "Chaussee d'Etterbeek 180\n1040 Brussels\nBelgium",
"id": "brussels",
"image": "https://lh3.googleusercontent.com/Vdcj2ozYBIOyJLAhRyQic7xjw-OfQ_F5b8M9Kaom_56M2zp8UW65Lm1bYJLLEc4_U4tXfAp-CA81U2O2tdHcXPdsCEUO0hyK_SFKF-Y",
"lat": 50.839315,
"lng": 4.380984,
"name": "Brussels",
"phone": "",
"region": "europe"
},
{
"address": "Alicia M. De Justo 350, 2nd Floor\nBuenos Aires, C1107AAH\nArgentina",
"id": "buenos-aires",
"image": "https://lh3.googleusercontent.com/08n-ZBH23cWYWAbRo7_uZ6VObzDOLdfvxiAy4vZvX2I_FBn4vlUl_qiwALWBMUp7gQ4LEkj7aW6gB_jdJWNmnsmYEKbWzNsh0EaYpw",
"lat": -34.602734,
"lng": -58.366992,
"name": "Buenos Aires",
"phone": "+54-11-5530-3000",
"region": "latin-america"
},
{
"address": "355 Main Street\nCambridge, MA 02142\nUnited States",
"id": "cambridge",
"image": "https://lh3.googleusercontent.com/OLL4nJ-esDQ3JFh2XpWSpX8WnO69yzFpYPWIy9yL_2WFapf74z_ZYvfqb4XkF0_hT2rCi3pzN2Y-yglQ-jWMw3u89YKwn4GfdT7FfQ",
"lat": 42.362757,
"lng": -71.087109,
"name": "Cambridge",
"phone": "+1 617-575-1300",
"region": "north-america"
},
{
"address": "200 West Franklin Street\nChapel Hill, NC 27516\nUnited States",
"id": "chapel-hill",
"image": "https://lh3.googleusercontent.com/AHShjZrvscMoWixuAd0zIXqER2wKMXtoqX4edIzur3FRLJ3DBDIAQqD6PZqB4it_ApAVyitFkjsRPER38oX6XHYOl9mxKbLCXrAQKA",
"lat": 35.912445,
"lng": -79.058488,
"name": "Chapel Hill",
"phone": "",
"region": "north-america"
},
{
"address": "210 Carpenter Ave\nChicago, IL 60607\nUnited States",
"id": "chicago-carpenter",
"image": "https://lh3.googleusercontent.com/pgZ_JGnbpqS4P8H29c6hOCQcLXiG1EZEw5W92FKddWuUTW8618AwIho27aAFPmniDUpH_jS3mCpAx3nY6WkT46oetsFMC__SrPCUmw",
"lat": 41.88609,
"lng": -87.65333,
"name": "Chicago \u2013 Carpenter",
"phone": "",
"region": "north-america"
},
{
"address": "320 N. Morgan, Suite 600\nChicago, IL 60607\nUnited States",
"id": "chicago-fulton",
"image": "https://lh3.googleusercontent.com/ulGqMc02YGomqRC2EN0JP7jOL-6qaIvhCq225DwyeP7b8l-H7ZTWkYDwVKHc0Z4nXEq_TBRCqqPfcc3N8WHm54XpOh16Yx73F4ng",
"lat": 41.8873457,
"lng": -87.6526874,
"name": "Chicago \u2013 Fulton Market",
"phone": "+1 312-840-4100",
"region": "north-america"
},
{
"address": "Skt. Petri Passage 5\n1165 Copenhagen\nDenmark",
"id": "copenhagen",
"image": "https://lh3.googleusercontent.com/SNSbrYGI_ZBuCl_S8aRh63IIta895tqIUUX3ZT0FWmK7ykhJRy_HNtzoud7XrohnjnSAkuXg9YykkFZqbvkRiZQC7osXrZzGerWdmG8",
"lat": 55.680452,
"lng": 12.570071,
"name": "Copenhagen",
"phone": "+45 3370 2600",
"region": "europe"
},
{
"address": "52 Henry St.\n3rd Floor\nDetroit, MI 48201\nUnited States",
"id": "detroit",
"image": "https://lh3.googleusercontent.com/WEP2INGXZc9vRv1ii6KDZGoRFPyumV466B3RzUwyzf8W81a7du2KGXlDEqS5g0nbOHsYTAvagFGVJskSonpt6wJWN2mVq8ti7JYPtvs",
"lat": 42.340458,
"lng": -83.054494,
"name": "Detroit",
"phone": "+1 248-593-4003",
"region": "north-america"
},
{
"address": "TECOM Zone, Dubai Internet City\nDubai, United Arab Emirates",
"id": "dubai",
"image": "https://lh3.googleusercontent.com/xw0iylnw3b3-qxwoNzLSLJlAAPtkF1KONnIoBTDHtURr04fzH9DeO08GYvEsKYQtE9GCdOMTk_s08H6-btSquKo3moeILfc3Kpu4MA",
"lat": 25.0929,
"lng": 55.1591,
"name": "Dubai",
"phone": "+971 4 4509500",
"region": "africa-middle-east"
},
{
"address": "Gordon House\nBarrow St\nDublin 4\nIreland",
"id": "dublin",
"image": "https://lh3.googleusercontent.com/1z3Fhr6nKlCDeTwc1KoFAMSrnywR0lb8nNdwTI1YgoKSXKIDjQeVB_I3Q8oDZuqqHtlXiUbPmfoUYyAXMObjvMxDcMeTqSY21YvP_A",
"lat": 53.3399526,
"lng": -6.2360967,
"name": "Dublin",
"phone": "",
"region": "europe"
},
{
"address": "Taikoo Hui Tower 1, No.383 Tianhe Road\nGuangzhou, 510620\nChina",
"id": "guangzhou",
"image": "https://lh3.googleusercontent.com/BjYQfVMor1QT5hAkc7DcN6_MJdwaySHY6VJ6IY7mQGJRdXjFZhiP-t4MV_QUbp0tBeuYvuMw3nUetTiI-vFl6-BcialJhhurhFrDVeY",
"lat": 23.1339728,
"lng": 113.3332488,
"name": "Guangzhou",
"phone": "",
"region": "asia-pacific"
},
{
"address": "Sector 15, Part II Village Silokhera\nGurgaon 122001\nIndia",
"id": "gurgaon",
"image": "https://lh3.googleusercontent.com/8plKBiWKmwllCXePad0JJ22u1GG7Qe1hveXlx_xJ87XoiQpclQubwxyGxcDU6tkatpb3oi9MYXjm2XszFi5kGn1flfTtjv6MycBWrQ",
"lat": 28.460581,
"lng": 77.048194,
"name": "Gurgaon",
"phone": "+91-12-44512900",
"region": "asia-pacific"
},
{
"address": "Building 30\nMATAM, Advanced Technology Centre\nHaifa, 3190500\nIsrael ",
"id": "haifa",
"image": "https://lh3.googleusercontent.com/syKfT9cVMzLi0d4_DSiJztWGwcmWct6IEbpAApEFk_G8ym0xyLLxMBT484zROIOZHMSe9N1o-QQrCAqVWfKRSY6EOeJY9Qa1ftwb",
"lat": 32.78897,
"lng": 34.958432,
"name": "Haifa",
"phone": "+972-74-746-6245",
"region": "africa-middle-east"
},
{
"address": "ABC-Strasse 19\n20354 Hamburg\nGermany",
"id": "hamburg",
"image": "https://lh3.googleusercontent.com/66R0svr2--6zNOnrqf6JbeZ-bF39bRfHpExjcTlE_AIlPEPk8jO1LjF39FUbDnJB1gh_FiRFX6aCRg4ACjYRbDqb5lf9PdV6qY4S",
"lat": 53.553752,
"lng": 9.986229,
"name": "Hamburg",
"phone": "49 40-80-81-79-000",
"region": "europe"
},
{
"address": "1 Matheson Street\nCauseway Bay, Hong Kong",
"id": "hong-kong",
"image": "https://lh3.googleusercontent.com/-Ult8_R6TfQAk16CfjSfl6PLypQBYohUjNjE6xeeektZsrP8XwTv7PnVVE-5Ueh3I-2hPnAdRGg6XrMn9IwI7W1h5LJKtlMVe93Wfw",
"lat": 22.278203,
"lng": 114.18176,
"name": "Hong Kong",
"phone": "+852-3923-5400",
"region": "asia-pacific"
},
{
"address": "Survey No. 13, DivyaSree Omega\nKondapur Village\nHyderabad, Telangana 500084\nIndia",
"id": "hyderabad",
"image": "https://lh3.googleusercontent.com/LAEnc0tzA-JSb5XM5oct5paX98QK9zh_aqa_qKcjAoXo2MChgOjdj_EZpgIZsVAvEY-I0bmMmhCBb5gkoVN4ebqCG9ZfjCbo_stJaw",
"lat": 17.458461,
"lng": 78.372452,
"name": "Hyderabad",
"phone": "+91-40-6619-3000",
"region": "asia-pacific"
},
{
"address": "19510 Jamboree Road\nIrvine, CA 92612\nUnited States",
"id": "irvine",
"image": "https://lh3.googleusercontent.com/LWGkhXkRRzWnMlNy_Ps74-VTxB2ISXK0Kkick1SujTLYvNAUqo9_HR7SILSZZsiaiGWsXtx7dR5Hz9Q5psu1MWP9BHtDuGYc_hz_eg",
"lat": 33.658792,
"lng": -117.859322,
"name": "Irvine",
"phone": "+1 949-794-1600",
"region": "north-america"
},
{
"address": "Eski Buyukdere Caddesi No: 209\n34394\nIstanbul, Turkey",
"id": "istanbul",
"image": "https://lh3.googleusercontent.com/_mdN7z1Q-9fKgpHTb1rQJosllxqn7glRJ_G2enX4WPmImuJjLHKw-JBZ8z5B9vMSo12SexGBOD1i2NHXqEy4OaOJekn0g3Fp3bDk_Q",
"lat": 41.081697,
"lng": 29.00859,
"name": "Istanbul",
"phone": "",
"region": "africa-middle-east"
},
{
"address": "Pacific Century Place Tower Level 45 SCBD Lot 10,\nJl. Jend. Sudirman No.53,\nRT.5/RW.3, Senayan, Kby. Baru,\nKota Jakarta Selatan,\nDaerah Khusus Ibukota Jakarta 12190, \nIndonesia",
"id": "jakarta",
"image": "https://lh3.googleusercontent.com/JEaMUfOUq6bxN7jeIN1z2me5-JvlLRkrFJgf_A0GvqtOquU6Tfjg0ecKeR_Ck27L0S1zC2t_4I6nVP6pBdBtSKst7tkJEoC7LyYq",
"lat": -6.227664,
"lng": 106.808471,
"name": "Jakarta",
"phone": "",
"region": "asia-pacific"
},
{
"address": "35 Ballyclare Drive, Building E\nJohannesburg\n2191, South Africa",
"id": "johannesburg",
"image": "https://lh3.googleusercontent.com/EDxefwSgeKyh8zN9VUUGhu3hiBqH7Z3UEOXfZeij7YnUhZLqLElu8dhi4FziOepRun-fjfwIWdf5W8CTG5ZSYMu4k8z9QZjTgjQRuQ",
"lat": -26.0734457,
"lng": 28.032035,
"name": "Johannesburg",
"phone": "",
"region": "africa-middle-east"
},
{
"address": "777 6th Street South\nKirkland, WA\nUnited States",
"id": "kirkland",
"image": "https://lh3.googleusercontent.com/Vgmu21GQbS0pga_tJaG0_35AYOzM64Uxp-zNYyMVnd3oXFHmHeMJpx8UjcsMYdnxbdlFZ4KGFowOtpHxsNlUw8qS21sYBy9jPbqkuA",
"lat": 47.669568,
"lng": -122.196912,
"name": "Kirkland",
"phone": "+1 425-739-5600",
"region": "north-america"
},
{
"address": "51 Breithaupt Street\nKitchener, ON N2H 5G5\nCanada",
"id": "kitchener",
"image": "https://lh3.googleusercontent.com/jUCZzQYnJXCUZ3ZxAEB14qukCV6aGxfh84hExpcpye314DhOWB4jtpUoNDrCtA2laV7qDHBAYGtIuZan9Ir5Hp6_U0B2zTGgPqsb",
"lat": 43.4541137,
"lng": -80.4992423,
"name": "Kitchener",
"phone": "+1-519-880-2300",
"region": "north-america"
},
{
"address": "Axiata Tower\nNo. 9, Jalan Stesen Sentral 5\n50470 Kuala Lumpur\nMalaysia",
"id": "kuala-lumpur",
"image": "https://lh3.googleusercontent.com/c5kAdRoyejY1Z5i9A3hYKfIG55GrKdAc0iJjH-gYo-tWd3JUksvsfZx7LU5yzay4HJmxCQEir2cejbZ2LurYfKL_emC9e9PCDVxd",
"lat": 3.133445,
"lng": 101.684609,
"name": "Kuala Lumpur",
"phone": "",
"region": "asia-pacific"
},
{
"address": "Avenida da Liberdade, 110\nLisbon, 1269-046, Portugal",
"id": "lisbon",
"image": "https://lh3.googleusercontent.com/py3HZVLLpxjMhRL6fgUKmHqGODp6ZH-5abQBHGqyKrCyuoW0t-q0ypNVN_jOfD3ZEO08Y9Q0m-E4ZyuNrMgl-mlaECkCAEyc7Af1",
"lat": 38.718887,
"lng": -9.143781,
"name": "Lisbon",
"phone": "+351 21 122 1803",
"region": "europe"
},
{
"address": "6 Pancras Square\nLondon N1C 4AG\nUnited Kingdom",
"id": "london-6ps",
"image": "https://lh3.googleusercontent.com/WTxWzt3AOcEMwoT2OonLTlc63pa4V-GsYbZg5Hu7rfe9ZioMaRurkxaQ5tOcuC9nZkCyh2IjQb-xMy4Tq8ISrHjfDHmzZXnExTjP",
"lat": 51.533311,
"lng": -0.126026,
"name": "London \u2013 6PS",
"phone": "+44-20-7031-3000",
"region": "europe"
},
{
"address": "Belgrave House\n76 Buckingham Palace Road\nLondon SW1W 9TQ\nUnited Kingdom",
"id": "london-bel",
"image": "https://lh3.googleusercontent.com/bLxZNCaDE2Fdj7woV_9JUJEUfUvTrhI57jHNEeW-OenTspzM21miwz1gGydzZ2Ke_vfRdkqdo4dyN2mJCntC2p4qvRUyipPWppAC9g",
"lat": 51.494961,
"lng": -0.146652,
"name": "London \u2013 BEL",
"phone": "+44-20-7031-3001",
"region": "europe"
},
{
"address": "1\u201313 St Giles High St\nLondon WC2H 8AG\nUnited Kingdom",
"id": "london-csg",
"image": "https://lh3.googleusercontent.com/32nlExbSrV5rJR9Qsqfkbckn6_yd-4QRaoSDmp9JLyaZxojfl9aH1LZSrSvcsT128AUzHqkEfMhTE2miDuOu7gj-7x3Ginqr4rgowg",
"lat": 51.516027,
"lng": -0.12755,
"name": "London \u2013 CSG",
"phone": "+44 (0)20-7031-3000",
"region": "europe"
},
{
"address": "340 Main Street\nLos Angeles, CA 90291\nUnited States",
"id": "los-angeles",
"image": "https://lh3.googleusercontent.com/MWGnaY3t_1-j7YylPpq35rvBU9gIBJIsnrtW95THrBw9N0PWrAVtbHKUBH8OdxyWI9gYdymndmSgwS8tl23GylytyefNC74i4-pniQ",
"lat": 33.995939,
"lng": -118.4766773,
"name": "Los Angeles, US",
"phone": "+1 310-310-6000",
"region": "north-america"
},
{
"address": "811 E Washington Ave\nSuite 700\nMadison, WI 53703\nUnited States",
"id": "madison",
"image": "https://lh3.googleusercontent.com/sQDFJpbQl4EVGfdpHsw_24mxsnUNAnDs6f-00QCj0g_Z38CEqjG4PuLPoS_T6eTOPV3QXX907Kap_TkaE3cEG4fhJWIoWsZELIGyvw",
"lat": 43.081091,
"lng": -89.374619,
"name": "Madison",
"phone": "+1 608-669-9841",
"region": "north-america"
},
{
"address": "Plaza Pablo Ruiz Picasso, I\nMadrid 28020\nSpain",
"id": "madrid",
"image": "https://lh3.googleusercontent.com/x36CdPxkwxxctp0wvDYfTjgTzNgMiZV0xoKeLMwHzdccpJGYUA6a61fSeX1_Rt-lfofMjfUwAhFxd7DbjsE8_393plkTly-T5YkpCA",
"lat": 40.4505331,
"lng": -3.6931161,
"name": "Madrid",
"phone": "+34 91-748-6400",
"region": "europe"
},
{
"address": "161 Collins Street,\nMelbourne VIC 3000,\nAustralia",
"id": "melbourne",
"image": "https://lh3.googleusercontent.com/U_5KiB8x7T-Rrdp90ygnO1kbZxiWJz4G6CbD6_51CjH5zaMP23upWELryFOe99k_AqlPZschCY7Nx--wYufcIV54HnjGcP3lf28X1A",
"lat": -37.815328,
"lng": 144.968737,
"name": "Melbourne",
"phone": "",
"region": "asia-pacific"
},
{
"address": "Google Mexico, S. de R.L. de C.V.\nMontes Urales 445\nLomas de Chapultepec\nMexico City 11000, Mexico",
"id": "mexico-city",
"image": "https://lh3.googleusercontent.com/P_U5ECZJ--t8khoKFxoeeJwa7PZy-3TriZbit5sRJDUdupf3NZRJegsnB4ucLqdLEV3De41fmByckDDC6uHMI82cXIFp4C1WwI1a1g",
"lat": 19.4283793,
"lng": -99.2065518,
"name": "Mexico City",
"phone": "+52 55-5342-8400",
"region": "latin-america"
},
{
"address": "1450 Brickell Ave Ste 900 \nMiami FL 33131\nUnited States",
"id": "miami",
"image": "https://lh3.googleusercontent.com/DTk99d9bCqiCN8sFj3FBr8BdGPYC97PCYbiLbdq6GZ-_Er268DSlvfRM_g8hwA5tOmw_6c3PBjpKpuRQTuXS8H8_hpIlCQKyobyYjQ",
"lat": 25.758473,
"lng": -80.1932144,
"name": "Miami",
"phone": "+1 305-985-7900",
"region": "north-america"
},
{
"address": "Porta Nuova Isola, Building C, Via Federico Confalonieri 4\n20124 Milan\nItaly",
"id": "milan",
"image": "https://lh3.googleusercontent.com/nZ_KE1LqNmW5qb6i-czLlm_yqRJtLmvEmyLRI0BYjqMlOiC_5VmbEI3DeHQyPOHp6PzoN2gKJ0j73BALkddFmDFXOIe9Wwctmt73cqI",
"lat": 45.486147,
"lng": 9.189546,
"name": "Milan",
"phone": "",
"region": "europe"
},
{
"address": "1253 McGill College Avenue\nMontreal, QC H3B 2Y5\nCanada",
"id": "montreal",
"image": "https://lh3.googleusercontent.com/S310Um4pKym8bvHQcQmJLc4ohURWEq3AQHjJ-b5aMY-TpA9P4LCKcxGEg4fik-zSL6MrtiEi8Qt3JbAZl8x-GiI31wfm_myGfb3manQ",
"lat": 45.50191,
"lng": -73.570365,
"name": "Montreal",
"phone": "514-670-8700",
"region": "north-america"
},
{
"address": "7 Balchug St\nMoscow 115035\nRussia",
"id": "moscow",
"image": "https://lh3.googleusercontent.com/i6cwRxcix3LUdviTVKoLG2Ep6q9pjfPIX_nrge-YkgjIvTgCH5QQpSI6wCpKvg0HiH56lHu6K8eAkCrPZUCzspS6Y9K19U47xr4hww",
"lat": 55.746747,
"lng": 37.626435,
"name": "Moscow",
"phone": "+7-495-644-1400",
"region": "europe"
},
{
"address": "1600 Amphitheatre Parkway\nMountain View, CA 94043\nUnited States",
"id": "mountain-view",
"image": "https://lh3.googleusercontent.com/Mh8P8gvVwO7NOXfg8anxwPXRy5oKZJ6Cz_LbFfOVdeIsdDfogmMcMsiW7HD7HD2NOINzAPH_v8dALWSuDiiTjCjRnenI7B3l6Pg4yw",
"lat": 37.421512,
"lng": -122.084101,
"name": "Mountain View",
"phone": "",
"region": "north-america"
},
{
"address": "3 North Avenue\nMaker Maxity, Bandra Kurla Complex\nBandra East\nMumbai, Maharashtra 400051\nIndia",
"id": "mumbai",
"image": "https://lh3.googleusercontent.com/twldrlVORn84fYsOLwNLabfRPQYX-dJAzJtpam-Ea4D7QIY1pvMa9FCMbpjUFA8uniBg6XAh8pMijf9qnjmEm4d17UFkwRGToiv5Ug",
"lat": 19.054364,
"lng": 72.850591,
"name": "Mumbai",
"phone": "+91-22-6611-7150",
"region": "asia-pacific"
},
{
"address": "Erika-Mann-Str. 33\n80636 Munich\nGermany",
"id": "munich",
"image": "https://lh3.googleusercontent.com/sVZqxencTTD84raIgMWd5SbmXZTvQmwUzxj6IakbIGuAua5JDu-Q64uJE-cm3TYeSjKVQo7VSwIODVpwswjtrpwBUvXTa5MDFXoNAw",
"lat": 48.14305556,
"lng": 11.54083333,
"name": "Munich",
"phone": "",
"region": "europe"
},
{
"address": "111 8th Avenue\nNew York, NY 10011\nUnited States",
"id": "new-york",
"image": "https://lh3.googleusercontent.com/BWdXxSOqBpjGFzAJVVr02QQs5XSe33dEeNDG6lXhd-nuv32ruMjD01yBJX3Rk4_xP6glB1ycMvwypEPr6YO665grfWqEEI2LPYUaMg",
"lat": 40.741445,
"lng": -74.003102,
"name": "New York",
"phone": "+1 212-565-0000",
"region": "north-america"
},
{
"address": "Aker Brygge\nBryggegata 6\n0250 Oslo\nNorway",
"id": "oslo",
"image": "https://lh3.googleusercontent.com/lc9jPxaz4CzdC3sD4wFlzml1Y221PvtsisYGenint536WNbyIMY2cp2qnQOmnT0IWPoOCjarwMgK6zddvTcOu6YcAuaVLfQAdqZ2UQg",
"lat": 59.90987,
"lng": 10.72598,
"name": "Oslo",
"phone": "",
"region": "europe"
},
{
"address": "8 Rue de Londres\n75009 Paris\nFrance",
"id": "paris",
"image": "https://lh3.googleusercontent.com/GHZlAB7t3toRGww1NJ6ZC2IpvR0jkgqFkQ0ZvM02dmQWt6fiHIKJZ7Eova959UD0PAapPE2r2TYMe3-dE3jGDgEoqHch0qyjAKvPENc",
"lat": 48.8771,
"lng": 2.33,
"name": "Paris",
"phone": "",
"region": "europe"
},
{
"address": "6425 Penn Avenue\nPittsburgh, PA 15206\nUnited States",
"id": "pittsburgh",
"image": "https://lh3.googleusercontent.com/47kJwc4CR6oGOI2l_su5CJHnEWkrUZlz7LZRGXHgF71xa-0gJc8qCBhnsNoigcNEGFfBpb3y5AxVXJP_TxvHtgUgTrU8zmBm3Two7w",
"lat": 40.45716,
"lng": -79.916596,
"name": "Pittsburgh",
"phone": "+1 412-345-6700",
"region": "north-america"
},
{
"address": "12422 W. Bluff Creek Drive\nPlaya Vista, CA 90094\nUnited States",
"id": "playa-vista",
"image": "https://lh3.googleusercontent.com/xnHVNI6bCcQxJyLV6sG3op8PlJcT9XgMAGmHrXtj5axhCZPH7Tbc9Ppjb2gTCtGbKmilT17B0dKzczOJh9JANh8Wwz0SXH0pEqCOkQ",
"lat": 33.97684,
"lng": -118.407244,
"name": "Playa Vista",
"phone": "",
"region": "north-america"
},
{
"address": "Wells Fargo Building, 309 SW 6th Ave\nPortland, OR 97204\nUnited States",
"id": "portland",
"image": "https://lh3.googleusercontent.com/FMeFmwWFZJD02kj0H73t5v8NPrVOecVxuCl9cA-vLiXgaXErYQxmMXJKvvROgwSNvgPdmRZ4-GQuub74p0dDwJgY37vBNN2vgx7Utw",
"lat": 45.521622,
"lng": -122.677458,
"name": "Portland",
"phone": "",
"region": "north-america"
},
{
"address": "Stroupeznickeho str. 3191/17\nPrague, Czech Republic\n150 00",
"id": "prague",
"image": "https://lh3.googleusercontent.com/jVNKH2mzDQ4Zu1-1G80-nDvLHYE9dmeetv43WG3zo7-dQWJoX1ghtXvviZHDLRG-ScqA804I2guuExY-8pkzIdkYlU28QGOB8Jkkiw",
"lat": 50.070259,
"lng": 14.402642,
"name": "Prague",
"phone": "",
"region": "europe"
},
{
"address": "1600 Seaport Boulevard\nRedwood City, CA 94063\nUnited States",
"id": "redwood-city",
"image": "https://lh3.googleusercontent.com/a7GCRT1go5jQzEQj--A-kq98pURYsO4cTCJPj6azEev7za4Y__Kd3E_khFyn5uxRtPC0Co_ZxzQtqrlXeOSNey8fOSV4pK0ffzSW5A",
"lat": 37.512171,
"lng": -122.201178,
"name": "Redwood City",
"phone": "",
"region": "north-america"
},
{
"address": "1875 Explorer Street \n10th Floor\nReston, VA 20190\nUnited States",
"id": "reston",
"image": "https://lh3.googleusercontent.com/4WuJCZlLflcQjsyhsGX3VSGDEVmC0Ljq291ECgVk3nN89ppnhSbdQIRI1I1-qh5YEf0Yicdc6amuqKz7oAdgLvQoNBrM9Zh3BcUwSw",
"lat": 38.958309,
"lng": -77.359795,
"name": "Reston",
"phone": "+1 202-370-5600",
"region": "north-america"
},
{
"address": "901 Cherry Avenue\nSan Bruno, CA 94066\nUnited States",
"id": "san-bruno",
"image": "https://lh3.googleusercontent.com/zcy-Un_QDZfx7nTlImk-jCocxSUjQAQ4SS0eVdBuNRZz3Nyb5WK_2oGwYpnBEdqjIcv_b-umq_akpWBEylaEp-wXk3pj9-gu6Ko9Igs",
"lat": 37.62816,
"lng": -122.426491,
"name": "San Bruno",
"phone": "",
"region": "north-america"
},
{
"address": "6420 Sequence Dr \nSuite 400\nSan Diego, CA 92121\nUnited States",
"id": "san-diego",
"image": "https://lh3.googleusercontent.com/RgGUUE3ra1j-mQIH8vp6an37hlwduD8uVnaCv8ivo5mX6ekdnZYd0-hlQ1hpQzV0ZgPk7y8h60oWy5MK5VF48ozZMYRXnh1ddJjuVGo",
"lat": 32.90961,
"lng": -117.181899,
"name": "San Diego",
"phone": "+1 858-239-4000",
"region": "north-america"
},
{
"address": "345 Spear Street\nSan Francisco, CA 94105\nUnited States",
"id": "san-francisco",
"image": "https://lh3.googleusercontent.com/OC_0_XdXLar-ytOETAv3uwRGfnLABSRu66hqLQpLrwIhqInPD6ccdZSEu_d5S8wmjc1knb9OM7yNh2K7hoGznvKZOgFlvrxJesd7mQ",
"lat": 37.789972,
"lng": -122.390013,
"name": "San Francisco",
"phone": "+1 415-736-0000",
"region": "north-america"
},
{
"address": "Costanera Sur Rio 2730 \nLas Condes, Santiago\nChile",