summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/raw/test_feature_properties.geojson
blob: 751c0a493910074ee964800f860151d14633e412 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  "type": "Feature",
  "id": 1,
  "properties": {
    "null_prop": null,
    "integer_prop": 10000,
    "float_prop": 10000.10,
    "string_prop": "my_string",
    "bool_prop": true,
    "object_prop": {
      "nested_string_prop": "my_string"
    }
  },
  "geometry": {
    "type": "Point",
    "coordinates": [
      5.112419128417969,
      52.09622422366772
    ]
  }
}