Bloggify/pianos-around-the-world

London pianos

IonicaBizau opened this issue · 0 comments

source: https://www.google.com/maps/d/viewer?mid=1Yr2GZxcfpfe7KiNh3hwMg2kmA-U&ll=51.45330000000003%2C-0.10225999999994428&z=9

p = JSON.parse(_pageData)
p[1][6][0][12][0][13][0].map(c => {
  return {
    "type": "Feature",
    "properties": {
      "title": c[5][0][1][0],
      "description": c[5][1][1][0],
      "image": Object(c[5][2][0])[1]
    },
    "geometry": {
      "type": "Point",
      "coordinates": [
          c[1][0][0][1], c[1][0][0][0]
        ]
      }
  }
})