├── .gitignore ├── resources └── markers │ ├── fast.png │ ├── slow.png │ └── moderate.png ├── .editorconfig ├── tools ├── package.json ├── README.md ├── utils.js ├── housekeeper.js ├── lint.js └── package-lock.json ├── luoyang.geojson ├── shenyang.geojson ├── hohhot.geojson ├── changsha.geojson ├── nanchang.geojson ├── qingdao.geojson ├── harbin.geojson ├── guiyang.geojson ├── wuhu.geojson ├── .github └── workflows │ └── housekeeping.yml ├── dalian.geojson ├── guangzhou.geojson ├── nanjing.geojson ├── README.md ├── chengdu.geojson ├── wuhan.geojson ├── hangzhou.geojson ├── shenzhen.geojson ├── shanghai.geojson └── beijing.geojson /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /resources/markers/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/awesome-cn-cafe/master/resources/markers/fast.png -------------------------------------------------------------------------------- /resources/markers/slow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/awesome-cn-cafe/master/resources/markers/slow.png -------------------------------------------------------------------------------- /resources/markers/moderate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/awesome-cn-cafe/master/resources/markers/moderate.png -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | quote_type = single 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /tools/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "awesome-cn-cafe-tool", 3 | "version": "1.0.0", 4 | "description": "This script automatically does housekeeping work.", 5 | "main": "housekeeper.js", 6 | "scripts": { 7 | "test": "node lint.js", 8 | "housekeeping": "node housekeeper.js" 9 | }, 10 | "author": "xavierchow", 11 | "license": "MIT", 12 | "dependencies": { 13 | "jsonlint": "^1.6.2", 14 | "chalk": "^2.4.1" 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- 1 | ## Purpose 2 | This script automatically does houskeeping work: 3 | 4 | * Sets the `marker-color` for places by the network speed 5 | * Updates README.md 6 | 7 | Color | Hex | Speed 8 | ------ | ------- | ----- 9 | Red | #C24740 | 0 ~ 4 Mbps 10 | Yellow | #F3AE1A | 4 ~ 10 Mbps 11 | Green | #50C240 | 10+ Mbps 12 | 13 | ## Prerequisite 14 | [Node.js](https://nodejs.org/) 15 | 16 | ```shell 17 | cd tools 18 | npm install 19 | ``` 20 | 21 | ## How to run 22 | 23 | ```shell 24 | ./tools/housepeeker.js 25 | ``` 26 | -------------------------------------------------------------------------------- /tools/utils.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | const fs = require('fs'); 5 | 6 | const GEOJSON_EXT = '.geojson'; 7 | const ROOT_DIR = path.resolve(__dirname, '..'); 8 | 9 | const cities = fs 10 | .readdirSync(ROOT_DIR) 11 | .filter((filename) => filename.endsWith(GEOJSON_EXT)) 12 | .map((filename) => path.basename(filename, GEOJSON_EXT)); 13 | 14 | const getCityGeoJSON = (city) => path.resolve(ROOT_DIR, city + GEOJSON_EXT); 15 | 16 | module.exports = { 17 | GEOJSON_EXT, 18 | ROOT_DIR, 19 | cities, 20 | getCityGeoJSON, 21 | }; 22 | -------------------------------------------------------------------------------- /luoyang.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "星巴克(洛阳中州路王府井店)", 8 | "下载速度": "15.5 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2959043772", 10 | "评论 (@xhacker)": "店非常大,人不多,网速快。", 11 | "marker-color": "#50C240", 12 | "marker-symbol": "cafe" 13 | }, 14 | "geometry": { 15 | "type": "Point", 16 | "coordinates": [ 17 | 112.429, 18 | 34.671 19 | ] 20 | } 21 | } 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /shenyang.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "星巴克(沈阳万象城店)", 8 | "下载速度": "15.1 Mbps", 9 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3255049915", 10 | "评论 (@xhacker)": "在万象城B1,空间很大。", 11 | "厕所": "商场内有。", 12 | "marker-color": "#50C240", 13 | "marker-symbol": "cafe" 14 | }, 15 | "geometry": { 16 | "type": "Point", 17 | "coordinates": [ 18 | 123.429, 19 | 41.772 20 | ] 21 | } 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /hohhot.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "星巴克(呼和浩特海亮广场店)", 8 | "下载速度": "3.80 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/zh-Hans/result/i/2899290848", 10 | "评论 (@xhacker)": "地方挺大的,人不多。周围有电源。", 11 | "厕所": "店内有", 12 | "marker-color": "#C24740", 13 | "marker-symbol": "cafe" 14 | }, 15 | "geometry": { 16 | "type": "Point", 17 | "coordinates": [ 18 | 111.663, 19 | 40.815 20 | ] 21 | } 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /changsha.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "三居时光", 8 | "下载速度": "144.49 Mbps", 9 | "Speedtest 链接": "https://www.speedtest.net/result/c/f6a6b9e3-5c4c-4875-8199-424a17af4e2c", 10 | "拿铁": "26元", 11 | "评论 (@lhysdl)": "家附近的咖啡馆,旁边的面馆很好吃^_^", 12 | "marker-color": "#50C240", 13 | "marker-symbol": "cafe" 14 | }, 15 | "geometry": { 16 | "type": "Point", 17 | "coordinates": [ 18 | 112.9953, 19 | 28.1289 20 | ] 21 | } 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /nanchang.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "德克士", 8 | "下载速度": "0.14 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/my-result/d/34889103", 10 | "评论 (@xhacker)": "南昌火车站候车楼内最好的休息场所——地方很大,人相对较少。可惜店内 Wi-Fi 很慢,几乎不能用。", 11 | "厕所": "店内没有。", 12 | "marker-color": "#C24740", 13 | "marker-symbol": "cafe" 14 | }, 15 | "geometry": { 16 | "type": "Point", 17 | "coordinates": [ 18 | 115.913, 19 | 28.667 20 | ] 21 | } 22 | } 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /qingdao.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "Danty Sevour 丹缇甘滋咖啡", 8 | "下载速度": "32 Mbps", 9 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3232764143", 10 | "人均消费": "72元", 11 | "荷兰冰滴": "38元", 12 | "评论 (@monswag)": "在奥帆中心里的情人坝,可以看到五四广场附近的海岸线,但是这家店没有 Espresso 很奇怪。", 13 | "marker-color": "#50C240", 14 | "marker-symbol": "cafe" 15 | }, 16 | "geometry": { 17 | "type": "Point", 18 | "coordinates": [ 19 | 120.385831, 20 | 36.051763 21 | ] 22 | } 23 | } 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /harbin.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "Costa Coffee(哈尔滨学府路店)", 8 | "下载速度": "3.74 Mbps", 9 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3334305105", 10 | "评论 (@spencerwooo)": "早上 9 点多去人很少,落地窗,桌子很干净,有音乐。靠近凯德广场入口,噪声还是有的。", 11 | "厕所": "商场内有厕所。", 12 | "参考价格": "20-50 元", 13 | "marker-color": "#C24740", 14 | "marker-symbol": "cafe" 15 | }, 16 | "geometry": { 17 | "type": "Point", 18 | "coordinates": [ 19 | 126.604, 20 | 45.719 21 | ] 22 | } 23 | } 24 | ] 25 | } 26 | -------------------------------------------------------------------------------- /guiyang.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "漫咖啡 Maan Coffee", 8 | "下载速度": "1.53 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2039519025", 10 | "评论 (@xhacker)": "地方超级大,人不太多,比较嘈杂。", 11 | "marker-color": "#C24740", 12 | "marker-symbol": "cafe" 13 | }, 14 | "geometry": { 15 | "type": "Point", 16 | "coordinates": [ 17 | 106.701, 18 | 26.5952 19 | ] 20 | } 21 | }, 22 | { 23 | "type": "Feature", 24 | "properties": { 25 | "名称": "星巴克 Starbucks(贵阳花果园1店)", 26 | "下载速度": "64.7 Mbps", 27 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3024837860", 28 | "评论 (@xhacker)": "人不太多,网速快。", 29 | "marker-color": "#50C240", 30 | "marker-symbol": "cafe" 31 | }, 32 | "geometry": { 33 | "type": "Point", 34 | "coordinates": [ 35 | 106.685, 36 | 26.571 37 | ] 38 | } 39 | } 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /wuhu.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "星巴克 Starbucks(八佰伴店)", 8 | "下载速度": "21.1 Mbps", 9 | "Speedtest 链接": "https://www.speedtest.net/my-result/a/4612457720", 10 | "评论 (@zhaochunqi)": "网速一般,地理位置好。", 11 | "marker-color": "#50C240", 12 | "marker-symbol": "cafe" 13 | }, 14 | "geometry": { 15 | "type": "Point", 16 | "coordinates": [ 17 | 118.361389, 18 | 31.3425 19 | ] 20 | } 21 | }, 22 | { 23 | "type": "Feature", 24 | "properties": { 25 | "名称": "星巴克 Starbucks(苏宁广场店)", 26 | "下载速度": "6.91 Mbps", 27 | "Speedtest 链接": "https://www.speedtest.net/result/7976754230", 28 | "评论 (@zhaochunqi)": "网速实际体验还好,可能跟我在咖啡厅位置比较偏有关系,地理位置好。", 29 | "marker-color": "#F3AE1A", 30 | "marker-symbol": "cafe" 31 | }, 32 | "geometry": { 33 | "type": "Point", 34 | "coordinates": [ 35 | 118.361667, 36 | 31.335278 37 | ] 38 | } 39 | } 40 | ] 41 | } 42 | -------------------------------------------------------------------------------- /.github/workflows/housekeeping.yml: -------------------------------------------------------------------------------- 1 | # This is a basic workflow to help you get started with Actions 2 | 3 | name: House Keeping 4 | 5 | # Controls when the action will run. Triggers the workflow on push or pull request 6 | # events but only for the master branch 7 | on: 8 | push: 9 | branches: [ master ] 10 | pull_request: 11 | branches: [ master ] 12 | 13 | # A workflow run is made up of one or more jobs that can run sequentially or in parallel 14 | jobs: 15 | # This workflow contains a single job called "build" 16 | build: 17 | # The type of runner that the job will run on 18 | runs-on: ubuntu-latest 19 | 20 | # Steps represent a sequence of tasks that will be executed as part of the job 21 | steps: 22 | # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it 23 | - uses: actions/checkout@v2 24 | - uses: actions/setup-node@v1 25 | with: 26 | node-version: '14' 27 | 28 | - name: Install 29 | run: npm install -C tools 30 | 31 | - name: House Keeping 32 | run: npm run housekeeping -C tools 33 | 34 | - name: Commit 35 | uses: EndBug/add-and-commit@v4 36 | with: 37 | message: "chore: house keeping" 38 | env: 39 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 40 | 41 | - name: Test 42 | run: npm test -C tools 43 | -------------------------------------------------------------------------------- /dalian.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "星巴克(高新锦辉店)", 8 | "下载速度": "0.45 Mbps", 9 | "评论 (@yihong0618)": "锦辉店内,网速很差", 10 | "厕所": "商场内有。", 11 | "marker-color": "#C24740", 12 | "marker-symbol": "cafe" 13 | }, 14 | "geometry": { 15 | "type": "Point", 16 | "coordinates": [ 17 | 121.527647, 18 | 38.864401 19 | ] 20 | } 21 | }, 22 | { 23 | "type": "Feature", 24 | "properties": { 25 | "名称": "星巴克(高新万达分店)", 26 | "下载速度": "2.72 Mbps", 27 | "评论 (@yihong0618)": "万达店内,空调很足,地方不大", 28 | "厕所": "商场内有(很近)。", 29 | "marker-color": "#C24740", 30 | "marker-symbol": "cafe" 31 | }, 32 | "geometry": { 33 | "type": "Point", 34 | "coordinates": [ 35 | 121.527286, 36 | 38.862553 37 | ] 38 | } 39 | }, 40 | { 41 | "type": "Feature", 42 | "properties": { 43 | "名称": "星巴克(锦辉书香园分店)", 44 | "下载速度": "0.45 Mbps", 45 | "评论 (@yihong0618)": "环境还好,屎一样的网络", 46 | "厕所": "商场内有。", 47 | "marker-color": "#C24740", 48 | "marker-symbol": "cafe" 49 | }, 50 | "geometry": { 51 | "type": "Point", 52 | "coordinates": [ 53 | 121.54233, 54 | 38.876792 55 | ] 56 | } 57 | } 58 | ] 59 | } 60 | -------------------------------------------------------------------------------- /guangzhou.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "班克咖啡", 8 | "下载速度": "8.51 Mbps", 9 | "上传速度": "0.6 Mbps", 10 | "Speedtest 链接": "http://www.speedtest.net/my-result/5243998080", 11 | "参考价格": "30-50 元", 12 | "拿铁": "33元", 13 | "冰咖啡": "25元", 14 | "下午茶套餐": "无", 15 | "评论 (@mshhmzh)": "自家烘焙咖啡店,主打精品咖啡。网络一般,平时人比较少", 16 | "marker-color": "#F3AE1A", 17 | "marker-symbol": "cafe" 18 | }, 19 | "geometry": { 20 | "type": "Point", 21 | "coordinates": [ 22 | 113.320205, 23 | 23.131245 24 | ] 25 | } 26 | }, 27 | { 28 | "type": "Feature", 29 | "properties": { 30 | "名称": "7-INN郁源咖啡", 31 | "下载速度": "39.73 Mbps", 32 | "上传速度": "2.87 Mbps", 33 | "Speedtest 链接": "http://www.speedtest.net/my-result/5563529474", 34 | "参考价格": "40-50 元", 35 | "单品": "40元", 36 | "下午茶套餐": "无", 37 | "评论 (@mshhmzh)": "自家烘焙咖啡店,主打精品咖啡。电信光纤,网速很快。很适合小团队外出办公", 38 | "marker-color": "#50C240", 39 | "marker-symbol": "cafe" 40 | }, 41 | "geometry": { 42 | "type": "Point", 43 | "coordinates": [ 44 | 113.319998, 45 | 23.13122 46 | ] 47 | } 48 | }, 49 | { 50 | "type": "Feature", 51 | "properties": { 52 | "名称": "星巴克(广州太古汇店)", 53 | "下载速度": "0.38 Mbps", 54 | "Speedtest 链接": "https://www.speedtest.net/result/i/3296587788", 55 | "评论 (@xhacker)": "是一家臻选店,店面很大,人不少,不够清静。在太古汇地下一层。", 56 | "marker-color": "#C24740", 57 | "marker-symbol": "cafe" 58 | }, 59 | "geometry": { 60 | "type": "Point", 61 | "coordinates": [ 62 | 113.327, 63 | 23.137 64 | ] 65 | } 66 | } 67 | ] 68 | } 69 | -------------------------------------------------------------------------------- /tools/housekeeper.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict'; 4 | 5 | const assert = require('assert'); 6 | const fs = require('fs'); 7 | const { cities, getCityGeoJSON } = require('./utils'); 8 | const updater = require('./lint'); 9 | 10 | const RED = '#C24740'; 11 | const YELLOW = '#F3AE1A'; 12 | const GREEN = '#50C240'; 13 | const GRAY = '#BEBEBE'; 14 | 15 | const setMarkerSymbol = (feature) => { 16 | if (!feature.properties['marker-symbol']) 17 | feature.properties['marker-symbol'] = 'cafe'; 18 | }; 19 | 20 | const setMarkerColor = (feature, avg, status) => { 21 | if (status === '停业') { 22 | feature.properties['marker-color'] = GRAY; 23 | } else if (avg < 4) { 24 | feature.properties['marker-color'] = RED; 25 | } else if (avg < 10) { 26 | feature.properties['marker-color'] = YELLOW; 27 | } else { 28 | feature.properties['marker-color'] = GREEN; 29 | } 30 | }; 31 | 32 | const buildMarker = (city) => { 33 | const sourceFile = getCityGeoJSON(city); 34 | 35 | const target = JSON.parse(fs.readFileSync(sourceFile, 'utf-8')); 36 | 37 | for (let f of target.features) { 38 | let downloadSpeed = f.properties['下载速度']; 39 | //some downloadSpeed may be array, in such case let's calculate the average 40 | if (!Array.isArray(downloadSpeed)) { 41 | downloadSpeed = [downloadSpeed]; 42 | } 43 | let sum = downloadSpeed 44 | .map((value) => { 45 | const matched = value.match(/^([\d|\.]+)\s?Mbps$/i); 46 | let speedStr = matched && matched[1]; 47 | assert(speedStr); 48 | return parseFloat(speedStr); 49 | }) 50 | .reduce((a, b) => { 51 | return a + b; 52 | }); 53 | let average = sum / downloadSpeed.length; 54 | let status = f.properties['营业状态']; 55 | setMarkerColor(f, average, status); 56 | setMarkerSymbol(f); 57 | } 58 | fs.writeFileSync(sourceFile, JSON.stringify(target, null, 2) + '\n'); 59 | console.log(`${city}: Done with ${target.features.length} records!`); 60 | }; 61 | 62 | cities.forEach(buildMarker); 63 | updater.updateCafeNumbers(); 64 | -------------------------------------------------------------------------------- /tools/lint.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const path = require('path'); 4 | const fs = require('fs'); 5 | const jsonlint = require('jsonlint'); 6 | const chalk = require('chalk'); 7 | const { cities, ROOT_DIR, getCityGeoJSON } = require('./utils'); 8 | 9 | const readme = path.resolve(ROOT_DIR, 'README.md'); 10 | let readmeContent = fs.readFileSync(readme, 'utf8'); 11 | 12 | const lint = (city) => { 13 | const sourceFile = getCityGeoJSON(city) 14 | const json = fs.readFileSync(sourceFile, 'utf8'); 15 | try { 16 | const cafes = jsonlint.parse(json); 17 | if (!isCounterMatched(city, cafes.features.length)) { 18 | throw Error('Need to update the counter in README.md'); 19 | } 20 | return true; 21 | } catch (e) { 22 | // embed the file name into error.message 23 | e.message = `${city}: ${e.message}`; 24 | throw e; 25 | } 26 | }; 27 | 28 | const update = (city) => { 29 | const sourceFile = getCityGeoJSON(city) 30 | const json = fs.readFileSync(sourceFile, 'utf8'); 31 | const cafes = jsonlint.parse(json); 32 | if (!isCounterMatched(city, cafes.features.length)) { 33 | console.log( 34 | chalk.red('Found inconsistent number: city = %s, newNum = %d'), 35 | city, 36 | cafes.features.length 37 | ); 38 | updateReadmeContent(city, cafes.features.length); 39 | } 40 | }; 41 | 42 | const updateReadmeContent = (city, newNumber) => { 43 | const re = new RegExp(`(.*)\\((\\d+)\\)\\]\\((${city})`); 44 | readmeContent = readmeContent.replace(re, `$1(${newNumber})]($3`); 45 | }; 46 | 47 | const isCounterMatched = (city, currentCafes) => { 48 | // match the number before the cityname e.g. [北京 (35)](beijing.geojson) 49 | // the inner `(` is for regexp grouping 50 | const arr = readmeContent.match(`\\((\\d+)\\)\\]\\(${city}`); 51 | if (!arr) return false; 52 | return parseInt(arr[1], 10) === currentCafes; 53 | }; 54 | 55 | // if run from CI 56 | if (require.main === module) { 57 | cities.every(lint); 58 | } 59 | 60 | exports.updateCafeNumbers = () => { 61 | cities.forEach(update); 62 | console.log(chalk.magenta('Updating README.md, don’t forget to commit it!')); 63 | fs.writeFileSync(readme, readmeContent); 64 | }; 65 | -------------------------------------------------------------------------------- /nanjing.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "Costa Coffee(南京南站店)", 8 | "下载速度": "0.75 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/my-result/4643048535", 10 | "参考价格": "25-30 元", 11 | "评论 (@xhacker)": "出北出站口就到。", 12 | "marker-color": "#C24740", 13 | "marker-symbol": "cafe" 14 | }, 15 | "geometry": { 16 | "type": "Point", 17 | "coordinates": [ 18 | 118.782, 19 | 31.973 20 | ] 21 | } 22 | }, 23 | { 24 | "type": "Feature", 25 | "properties": { 26 | "名称": "Starbucks(南京苏宁商贸店)", 27 | "下载速度": "5.0 Mbps", 28 | "Speedtest 链接": "http://www.speedtest.net/my-result/4643486860", 29 | "参考价格": "30-40 元", 30 | "评论 (@xhacker)": "人挺少的,网速还不错。", 31 | "marker-color": "#F3AE1A", 32 | "marker-symbol": "cafe" 33 | }, 34 | "geometry": { 35 | "type": "Point", 36 | "coordinates": [ 37 | 118.78, 38 | 32.042 39 | ] 40 | } 41 | }, 42 | { 43 | "type": "Feature", 44 | "properties": { 45 | "名称": "The Cub", 46 | "下载速度": "13 Mbps", 47 | "Speedtest 链接": "http://www.speedtest.net/my-result/5220780633", 48 | "参考价格": "20-40 元", 49 | "评论 (@61)": "很简洁的咖啡馆,网速很快。", 50 | "marker-color": "#50C240", 51 | "marker-symbol": "cafe" 52 | }, 53 | "geometry": { 54 | "type": "Point", 55 | "coordinates": [ 56 | 118.772, 57 | 32.052 58 | ] 59 | } 60 | }, 61 | { 62 | "type": "Feature", 63 | "properties": { 64 | "名称": "新杂志咖啡", 65 | "下载速度": "3.65 Mbps", 66 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2216341385", 67 | "参考价格": "30-80 元", 68 | "评论 (@61)": "人比较少,高铁南站附近,候车的可以在此休息。", 69 | "marker-color": "#C24740", 70 | "marker-symbol": "cafe" 71 | }, 72 | "geometry": { 73 | "type": "Point", 74 | "coordinates": [ 75 | 118.8, 76 | 31.9721 77 | ] 78 | } 79 | } 80 | ] 81 | } 82 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome CN Café 2 | ![CI](https://github.com/ElaWorkshop/awesome-cn-cafe/workflows/CI/badge.svg) 3 | 4 | 那些网速快咖啡好的咖啡馆。不同颜色的标记代表不同的下载速度。 5 | 6 | 7 | 8 | 9 | 10 | 11 |
标记下载速度色值
Slow marker0 ~ 4 Mbps#C24740
Moderate marker4 ~ 10 Mbps#F3AE1A
Fast marker10+ Mbps#50C240
12 | 13 | 14 | ## 咖啡馆列表 15 | 16 | 你可以通过 web app 查看所在城市的咖啡馆:[https://cafe-cn.netlify.app](https://cafe-cn.netlify.app)。 17 | Web app 由 [@antfu](https://github.com/antfu) 维护:https://github.com/antfu/awesome-cn-cafe-web 18 | 19 | 或直接点击下面的链接在 GitHub 上查看。 20 | 21 | * [北京 (128)](beijing.geojson) 22 | * [上海 (68)](shanghai.geojson) 23 | * [南京 (4)](nanjing.geojson) 24 | * [武汉 (5)](wuhan.geojson) 25 | * [杭州 (11)](hangzhou.geojson) 26 | * [广州 (3)](guangzhou.geojson) 27 | * [深圳 (16)](shenzhen.geojson) 28 | * [贵阳 (2)](guiyang.geojson) 29 | * [成都 (5)](chengdu.geojson) 30 | * [南昌 (1)](nanchang.geojson) 31 | * [呼和浩特 (1)](hohhot.geojson) 32 | * [洛阳 (1)](luoyang.geojson) 33 | * [芜湖 (2)](wuhu.geojson) 34 | * [青岛 (1)](qingdao.geojson) 35 | * [沈阳 (1)](shenyang.geojson) 36 | * [哈尔滨 (1)](harbin.geojson) 37 | * [大连 (3)](dalian.geojson) 38 | * [长沙 (1)](changsha.geojson) 39 | 40 | ## 贡献 41 | 42 | 欢迎发 pull request 添加你去过的咖啡馆。请通过浏览器或手机 app 等方式获取网络速度和经纬度,然后添加到相应的 [geoJSON](http://geojson.org/geojson-spec.html) 中。如果没有你所在的城市,请新建一个 geoJSON 文件。格式请参见 [shanghai.geojson](shanghai.geojson)。 43 | 44 | ### 通过手机 App 45 | 46 | 推荐使用 [Speedtest](http://www.speedtest.net/mobile/)([iOS](https://itunes.apple.com/app/speedtest-net-mobile-speed/id300704847?mt=8) / [Android](https://play.google.com/store/apps/details?id=org.zwanoo.android.speedtest)),既可测试网络速度也能获取当前经纬度。 47 | 48 | ### 通过浏览器 49 | 50 | 请用 [Speedtest](http://speedtest.net) 或其他工具测试网络速度、Mapbox 的[显示经纬度](https://www.mapbox.com/mapbox.js/example/v1.0.0/select-center-form/)来获取经纬度。在 Google Maps 上通过 What’s here 取得的经纬度有些许偏差。如果你正在咖啡馆并且可以翻墙,可以使用 [whereami](https://xavierchow.github.io/whereami/) 来获得当前经纬度。 51 | 52 | ## 授权 53 | [CC-BY](http://creativecommons.org/licenses/by/4.0/) 54 | -------------------------------------------------------------------------------- /chengdu.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "咖世家咖啡(Costa Coffee)", 8 | "下载速度": "4.63 Mbps", 9 | "Speedtest 链接": "http://beta.speedtest.net/result/6381402353", 10 | "评论 (@cosmos53076)": "成都市中心位置,人少,网速还可以。", 11 | "marker-color": "#F3AE1A", 12 | "marker-symbol": "cafe" 13 | }, 14 | "geometry": { 15 | "type": "Point", 16 | "coordinates": [ 17 | 104.068281, 18 | 30.66127 19 | ] 20 | } 21 | }, 22 | { 23 | "type": "Feature", 24 | "properties": { 25 | "名称": "漫咖啡(3号店)(Manne Coffee)", 26 | "下载速度": "10.43 Mbps", 27 | "Speedtest 链接": "http://beta.speedtest.net/result/6381848344", 28 | "评论 (@cosmos53076)": "高新区,网速很快,人很多", 29 | "marker-color": "#50C240", 30 | "marker-symbol": "cafe" 31 | }, 32 | "geometry": { 33 | "type": "Point", 34 | "coordinates": [ 35 | 104.063417, 36 | 30.549483 37 | ] 38 | } 39 | }, 40 | { 41 | "type": "Feature", 42 | "properties": { 43 | "名称": "漫咖啡(2号店)(Manne Coffee)", 44 | "下载速度": "7.47 Mbps", 45 | "Speedtest 链接": "http://beta.speedtest.net/result/6384439354", 46 | "评论 (@cosmos53076)": "周末人很多,网速还可以,测试连的Wifi是Maan Coffee 2", 47 | "marker-color": "#F3AE1A", 48 | "marker-symbol": "cafe" 49 | }, 50 | "geometry": { 51 | "type": "Point", 52 | "coordinates": [ 53 | 104.064766, 54 | 30.64873 55 | ] 56 | } 57 | }, 58 | { 59 | "type": "Feature", 60 | "properties": { 61 | "名称": "漫咖啡(紫荆美熙广场店)(Manne Coffee)", 62 | "下载速度": "18.47 Mbps", 63 | "Speedtest 链接": "http://beta.speedtest.net/result/6393926937", 64 | "评论 (@cosmos53076)": "工作日人非常少,即使是午餐时间,网速非常快,测试连的Wifi是Maan Coffee(Mann Coffee Free WiFi很慢)", 65 | "marker-color": "#50C240", 66 | "marker-symbol": "cafe" 67 | }, 68 | "geometry": { 69 | "type": "Point", 70 | "coordinates": [ 71 | 104.05147, 72 | 30.615395 73 | ] 74 | } 75 | }, 76 | { 77 | "type": "Feature", 78 | "properties": { 79 | "名称": "构客咖啡(GROK Coffee)", 80 | "下载速度": "91.85 Mbps", 81 | "Speedtest 链接": "https://www.speedtest.net/result/8681040588", 82 | "评论 (@kid1412621)": "毗邻银泰城,人比较少,景观不错,空间很大(3 层+天台),网速非常快", 83 | "marker-color": "#50C240", 84 | "marker-symbol": "cafe" 85 | }, 86 | "geometry": { 87 | "type": "Point", 88 | "coordinates": [ 89 | 104.05782, 90 | 30.53827 91 | ] 92 | } 93 | } 94 | ] 95 | } 96 | -------------------------------------------------------------------------------- /wuhan.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "星巴克(光谷国际广场店)", 8 | "下载速度": "3.87 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/my-result/5208990021", 10 | "参考价格": "27-45 元", 11 | "热拿铁": "27元", 12 | "评论 (@lvwzhen)": "位置有点小,网速一般", 13 | "marker-color": "#C24740", 14 | "marker-symbol": "cafe" 15 | }, 16 | "geometry": { 17 | "type": "Point", 18 | "coordinates": [ 19 | 114.392807, 20 | 30.509323 21 | ] 22 | } 23 | }, 24 | { 25 | "type": "Feature", 26 | "properties": { 27 | "名称": "wow cafe", 28 | "下载速度": "10.27 Mbps", 29 | "Speedtest 链接": "http://www.speedtest.net/my-result/52094459141", 30 | "参考价格": "12-45 元", 31 | "热拿铁": "12元", 32 | "评论 (@lvwzhen)": "测试网速很快,实际速度不稳定", 33 | "marker-color": "#50C240", 34 | "marker-symbol": "cafe" 35 | }, 36 | "geometry": { 37 | "type": "Point", 38 | "coordinates": [ 39 | 114.402027, 40 | 30.50457 41 | ] 42 | } 43 | }, 44 | { 45 | "type": "Feature", 46 | "properties": { 47 | "名称": "光谷创业咖啡", 48 | "下载速度": "6.37 Mbps", 49 | "Speedtest 链接": "http://www.speedtest.net/result/i/2053519680", 50 | "参考价格": "18-45 元", 51 | "热拿铁": "18元", 52 | "评论 (@lvwzhen)": "位置比较小,下午人不多,比较安静。", 53 | "marker-color": "#F3AE1A", 54 | "marker-symbol": "cafe" 55 | }, 56 | "geometry": { 57 | "type": "Point", 58 | "coordinates": [ 59 | 114.42, 60 | 30.4595 61 | ] 62 | } 63 | }, 64 | { 65 | "type": "Feature", 66 | "properties": { 67 | "名称": "COSTA COFFEE", 68 | "下载速度": "51.31 Mbps", 69 | "Speedtest 链接": "http://www.speedtest.net/result/i/2066439816", 70 | "参考价格": "30-45 元", 71 | "冰拿铁": "32元", 72 | "评论 (@lvwzhen)": "网速很快,有很多人在这里办公", 73 | "marker-color": "#50C240", 74 | "marker-symbol": "cafe" 75 | }, 76 | "geometry": { 77 | "type": "Point", 78 | "coordinates": [ 79 | 114.399, 80 | 30.5082 81 | ] 82 | } 83 | }, 84 | { 85 | "type": "Feature", 86 | "properties": { 87 | "名称": "TOMYORK", 88 | "下载速度": "29.78 Mbps", 89 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2071489966", 90 | "参考价格": "20-40 元", 91 | "冰摩卡": "20元", 92 | "评论 (@lvwzhen)": "学校旁边,人不多,音乐不吵不吵", 93 | "marker-color": "#50C240", 94 | "marker-symbol": "cafe" 95 | }, 96 | "geometry": { 97 | "type": "Point", 98 | "coordinates": [ 99 | 114.417, 100 | 30.4425 101 | ] 102 | } 103 | } 104 | ] 105 | } 106 | -------------------------------------------------------------------------------- /tools/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "awesome-cn-cafe-tool", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "JSV": { 8 | "version": "4.0.2", 9 | "resolved": "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz", 10 | "integrity": "sha1-0Hf2glVx+CEy+d/67Vh7QCn+/1c=" 11 | }, 12 | "ansi-styles": { 13 | "version": "3.2.1", 14 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 15 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 16 | "requires": { 17 | "color-convert": "^1.9.0" 18 | } 19 | }, 20 | "chalk": { 21 | "version": "2.4.2", 22 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 23 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 24 | "requires": { 25 | "ansi-styles": "^3.2.1", 26 | "escape-string-regexp": "^1.0.5", 27 | "supports-color": "^5.3.0" 28 | } 29 | }, 30 | "color-convert": { 31 | "version": "1.9.3", 32 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 33 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 34 | "requires": { 35 | "color-name": "1.1.3" 36 | } 37 | }, 38 | "color-name": { 39 | "version": "1.1.3", 40 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 41 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 42 | }, 43 | "escape-string-regexp": { 44 | "version": "1.0.5", 45 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 46 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 47 | }, 48 | "has-color": { 49 | "version": "0.1.7", 50 | "resolved": "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz", 51 | "integrity": "sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8=" 52 | }, 53 | "has-flag": { 54 | "version": "3.0.0", 55 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 56 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 57 | }, 58 | "jsonlint": { 59 | "version": "1.6.3", 60 | "resolved": "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.3.tgz", 61 | "integrity": "sha512-jMVTMzP+7gU/IyC6hvKyWpUU8tmTkK5b3BPNuMI9U8Sit+YAWLlZwB6Y6YrdCxfg2kNz05p3XY3Bmm4m26Nv3A==", 62 | "requires": { 63 | "JSV": "^4.0.x", 64 | "nomnom": "^1.5.x" 65 | } 66 | }, 67 | "nomnom": { 68 | "version": "1.8.1", 69 | "resolved": "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz", 70 | "integrity": "sha1-IVH3Ikcrp55Qp2/BJbuMjy5Nwqc=", 71 | "requires": { 72 | "chalk": "~0.4.0", 73 | "underscore": "~1.6.0" 74 | }, 75 | "dependencies": { 76 | "ansi-styles": { 77 | "version": "1.0.0", 78 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz", 79 | "integrity": "sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg=" 80 | }, 81 | "chalk": { 82 | "version": "0.4.0", 83 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz", 84 | "integrity": "sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8=", 85 | "requires": { 86 | "ansi-styles": "~1.0.0", 87 | "has-color": "~0.1.0", 88 | "strip-ansi": "~0.1.0" 89 | } 90 | } 91 | } 92 | }, 93 | "strip-ansi": { 94 | "version": "0.1.1", 95 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz", 96 | "integrity": "sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE=" 97 | }, 98 | "supports-color": { 99 | "version": "5.5.0", 100 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 101 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 102 | "requires": { 103 | "has-flag": "^3.0.0" 104 | } 105 | }, 106 | "underscore": { 107 | "version": "1.6.0", 108 | "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz", 109 | "integrity": "sha1-izixDKze9jM3uLJOT/htRa6lKag=" 110 | } 111 | } 112 | } 113 | -------------------------------------------------------------------------------- /hangzhou.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "贝塔朋友@当堂咖啡馆", 8 | "下载速度": "2.00 Mbps", 9 | "上传速度": "1.95 Mbps", 10 | "Speedtest 链接": "http://www.speedtest.net/my-result/5220542783", 11 | "参考价格": "27-45 元", 12 | "拿铁": "27元", 13 | "冰咖啡": "25元", 14 | "下午茶套餐": "28/35元", 15 | "评论 (@Du)": "店比较空,唯一像互联网咖啡厅的地方是楼上有一些会议室状的房间。网速没有想象中的快,且并没有自带梯子。另外没有插座很怨念", 16 | "marker-color": "#C24740", 17 | "marker-symbol": "cafe" 18 | }, 19 | "geometry": { 20 | "type": "Point", 21 | "coordinates": [ 22 | 120.11204481124877, 23 | 30.286697789121206 24 | ] 25 | } 26 | }, 27 | { 28 | "type": "Feature", 29 | "properties": { 30 | "名称": "芸台书舍", 31 | "下载速度": "1.48 Mbps", 32 | "上传速度": "1.59 Mbps", 33 | "Speedtest 链接": "http://www.speedtest.net/my-result/5257166271", 34 | "参考价格": "38 元", 35 | "卡布奇诺小杯": "37元", 36 | "苏打水": "25元", 37 | "评论 (@Du)": "座位有插座,WiFi速度还行,书店所在的娃哈哈未来城有点冷清,所以比起闹市区来这个店很安静,也不用怕来得晚没有座位。", 38 | "marker-color": "#C24740", 39 | "marker-symbol": "cafe" 40 | }, 41 | "geometry": { 42 | "type": "Point", 43 | "coordinates": [ 44 | 120.20397, 45 | 30.241572 46 | ] 47 | } 48 | }, 49 | { 50 | "type": "Feature", 51 | "properties": { 52 | "名称": "薄荷咖啡", 53 | "下载速度": "34.53 Mbps", 54 | "上传速度": "8.76 Mbps", 55 | "Speedtest 链接": "http://www.speedtest.net/my-result/5259475408", 56 | "参考价格": "30 - 50 元", 57 | "拿铁": "30元", 58 | "评论 (@61)": "店隐蔽在树林里,比较难找,人比较少环境不错", 59 | "marker-color": "#50C240", 60 | "marker-symbol": "cafe" 61 | }, 62 | "geometry": { 63 | "type": "Point", 64 | "coordinates": [ 65 | 120.117011, 66 | 30.282694 67 | ] 68 | } 69 | }, 70 | { 71 | "type": "Feature", 72 | "properties": { 73 | "名称": "Zoo Coffee", 74 | "下载速度": "14.37 Mbps", 75 | "上传速度": "7.16 Mbps", 76 | "Speedtest 链接": "http://www.speedtest.net/my-result/5260003831", 77 | "参考价格": "30 - 50 元", 78 | "评论 (@61)": "蘑菇街楼下,位置多", 79 | "marker-color": "#50C240", 80 | "marker-symbol": "cafe" 81 | }, 82 | "geometry": { 83 | "type": "Point", 84 | "coordinates": [ 85 | 120.096551, 86 | 30.274977 87 | ] 88 | } 89 | }, 90 | { 91 | "type": "Feature", 92 | "properties": { 93 | "名称": "云门书屋", 94 | "下载速度": "9.78 Mbps", 95 | "上传速度": "5.53 Mbps", 96 | "Speedtest 链接": "http://www.speedtest.net/my-result/5267002745", 97 | "参考价格": "30 - 50 元", 98 | "评论 (@61)": "浙大紫金港校区边上,人比较少", 99 | "marker-color": "#F3AE1A", 100 | "marker-symbol": "cafe" 101 | }, 102 | "geometry": { 103 | "type": "Point", 104 | "coordinates": [ 105 | 120.079322, 106 | 30.312511 107 | ] 108 | } 109 | }, 110 | { 111 | "type": "Feature", 112 | "properties": { 113 | "名称": "青峰", 114 | "下载速度": "4.47 Mbps", 115 | "上传速度": "3.63 Mbps", 116 | "Speedtest 链接": "http://www.speedtest.net/my-result/5272283494", 117 | "参考价格": "30元", 118 | "卡布奇诺": "30元", 119 | "薄荷盆栽奶茶": "28元", 120 | "双人牛排套餐": "128元", 121 | "评论 (@Du)": "靠墙座位有插座,有WiFi,服务态度不错,价格合适,环境安静,供应餐食可以顺便解决午饭", 122 | "marker-color": "#F3AE1A", 123 | "marker-symbol": "cafe" 124 | }, 125 | "geometry": { 126 | "type": "Point", 127 | "coordinates": [ 128 | 120.211514, 129 | 30.21258 130 | ] 131 | } 132 | }, 133 | { 134 | "type": "Feature", 135 | "properties": { 136 | "名称": "Teresa's", 137 | "下载速度": "7.0 Mbps", 138 | "上传速度": "5.15 Mbps", 139 | "Speedtest 链接": "http://www.speedtest.net/my-result/5276933310", 140 | "参考价格": "35 - 50 元", 141 | "评论 (@61)": "浙大玉泉校区北门附近,人比较少,沙发舒服", 142 | "marker-color": "#F3AE1A", 143 | "marker-symbol": "cafe" 144 | }, 145 | "geometry": { 146 | "type": "Point", 147 | "coordinates": [ 148 | 120.118611, 149 | 30.272825 150 | ] 151 | } 152 | }, 153 | { 154 | "type": "Feature", 155 | "properties": { 156 | "名称": "黑桃咖啡", 157 | "下载速度": "34.63 Mbps", 158 | "上传速度": "4.21 Mbps", 159 | "Speedtest 链接": "http://www.speedtest.net/my-result/5349797629", 160 | "参考价格": "35 - 50 元", 161 | "评论 (@61)": "西溪路上,店很大,装修很不错,桌子很大沙发很舒服", 162 | "marker-color": "#50C240", 163 | "marker-symbol": "cafe" 164 | }, 165 | "geometry": { 166 | "type": "Point", 167 | "coordinates": [ 168 | 120.10504, 169 | 30.270423 170 | ] 171 | } 172 | }, 173 | { 174 | "type": "Feature", 175 | "properties": { 176 | "名称": "星巴克咖啡 (西溪天堂店)", 177 | "下载速度": "0.76 Mbps", 178 | "上传速度": "0.15 Mbps", 179 | "Speedtest 链接": "http://www.speedtest.net/my-result/5534420505", 180 | "参考价格": "≥ 36 ¥", 181 | "marker-color": "#C24740", 182 | "marker-symbol": "cafe" 183 | }, 184 | "geometry": { 185 | "type": "Point", 186 | "coordinates": [ 187 | 120.086, 188 | 30.267 189 | ] 190 | } 191 | }, 192 | { 193 | "type": "Feature", 194 | "properties": { 195 | "名称": "漫咖啡(北城天地工厂概念店)", 196 | "下载速度": "24.6 Mbps", 197 | "上传速度": "4.76 Mbps", 198 | "Speedtest 链接": "http://www.speedtest.net/my-result/d/4292792", 199 | "参考价格": "25 - 50 元", 200 | "评论 (@leeiio)": "工厂风格,咖啡还行,比较安静因为这边本来就没有什么人,旁边就是超市和电影院", 201 | "marker-color": "#50C240", 202 | "marker-symbol": "cafe" 203 | }, 204 | "geometry": { 205 | "type": "Point", 206 | "coordinates": [ 207 | 120.123, 208 | 30.321 209 | ] 210 | } 211 | }, 212 | { 213 | "type": "Feature", 214 | "properties": { 215 | "名称": "Cafe Tim", 216 | "下载速度": "9.498 Mbps", 217 | "上传速度": "4.39 Mbps", 218 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2154242328", 219 | "参考价格": "25 元", 220 | "评论 (@xhacker)": "环境不错、咖啡也不错。其实紫金港北街这些咖啡店都挺适合工作的——只要有位置。不是考试周一般人不会太多。", 221 | "marker-color": "#F3AE1A", 222 | "marker-symbol": "cafe" 223 | }, 224 | "geometry": { 225 | "type": "Point", 226 | "coordinates": [ 227 | 120.079, 228 | 30.3126 229 | ] 230 | } 231 | } 232 | ] 233 | } 234 | -------------------------------------------------------------------------------- /shenzhen.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "More Cafe", 8 | "下载速度": "10.75 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/my-result/5241643963", 10 | "参考价格": "30-40 元", 11 | "美式咖啡": "28元", 12 | "评论 (@RYOHOI)": "世界之窗,深南大道边上。欧洲小镇园区内,小桥流水,侧耳倾听蛙鸣。桌子不多,是家别致的小店。有少量露天位子。", 13 | "marker-color": "#50C240", 14 | "marker-symbol": "cafe" 15 | }, 16 | "geometry": { 17 | "type": "Point", 18 | "coordinates": [ 19 | 113.967813, 20 | 22.538492 21 | ] 22 | } 23 | }, 24 | { 25 | "type": "Feature", 26 | "properties": { 27 | "名称": "Starbucks 星巴克", 28 | "下载速度": "4.44 Mbps", 29 | "Speedtest 链接": "http://www.speedtest.net/my-result/5243762474", 30 | "参考价格": "30-40 元", 31 | "焦糖玛奇朵": "31元(中杯)", 32 | "评论 (@RYOHOI)": "店内宽敞,位子充足,有大长木桌。室外可抽烟,夏天坐在人工喷泉边上时感凉风。上厕所很方便。硬伤:WiFi 太慢;解决方法:不用店内 WiFi,连 eluohu 都会更快。另:这一代星巴克特别多,方圆一公里内约十余家。", 33 | "marker-color": "#F3AE1A", 34 | "marker-symbol": "cafe" 35 | }, 36 | "geometry": { 37 | "type": "Point", 38 | "coordinates": [ 39 | 114.105812, 40 | 22.54467 41 | ] 42 | } 43 | }, 44 | { 45 | "type": "Feature", 46 | "properties": { 47 | "名称": "Starbucks 星巴克", 48 | "下载速度": "2.12 Mbps", 49 | "Speedtest 链接": "http://www.speedtest.cn/ip/218.18.171.*/AG_OVn6wQW99QAHmvstXDfVjO1wi4lSU", 50 | "参考价格": "30-40 元", 51 | "焦糖玛奇朵": "31元(中杯)", 52 | "评论 (@RYOHOI)": "人流量少,厕所干净,位子充足。门外有小花园,绿化不错。在欢乐颂商场楼下,用餐方便。", 53 | "marker-color": "#C24740", 54 | "marker-symbol": "cafe" 55 | }, 56 | "geometry": { 57 | "type": "Point", 58 | "coordinates": [ 59 | 113.926561, 60 | 22.541052 61 | ] 62 | } 63 | }, 64 | { 65 | "type": "Feature", 66 | "properties": { 67 | "名称": "GOOCOFFEE · 谷咖", 68 | "下载速度": "64.68 Mbps", 69 | "Speedtest 链接": "http://www.speedtest.cn/ip/183.37.178.*/h4Em462HVo3fN55FrxmV1Q", 70 | "参考价格": "20-30 元", 71 | "时令果汁": "28 元", 72 | "评论 (@RYOHOI)": "显而易见网速很快。因为周边都是写字楼,上班时间人并不多。位子不多,七八张小方桌。一整面书架零零散散地放了些书。位子都靠落地玻璃墙,采光很好。Last Word: 咖啡口味一般。", 73 | "marker-color": "#50C240", 74 | "marker-symbol": "cafe" 75 | }, 76 | "geometry": { 77 | "type": "Point", 78 | "coordinates": [ 79 | 113.923269, 80 | 22.497709 81 | ] 82 | } 83 | }, 84 | { 85 | "type": "Feature", 86 | "properties": { 87 | "名称": "雕刻时光咖啡馆(华侨城店)", 88 | "下载速度": "6.03 Mbps", 89 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1798025047", 90 | "评论 (@crispgm)": "位于生态广场入口处,环境不错。Wi-Fi 密码同北京相同。", 91 | "marker-color": "#F3AE1A", 92 | "marker-symbol": "cafe" 93 | }, 94 | "geometry": { 95 | "type": "Point", 96 | "coordinates": [ 97 | 113.978214, 98 | 22.54058 99 | ] 100 | } 101 | }, 102 | { 103 | "type": "Feature", 104 | "properties": { 105 | "名称": "蒙咖啡小馆 Mon Cafe", 106 | "下载速度": "7.11 Mbps", 107 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1799531243", 108 | "评论 (@crispgm)": "格调很好,比较安静,氛围更适合看书。价格稍贵。", 109 | "参考价格": "38-50 元", 110 | "marker-color": "#F3AE1A", 111 | "marker-symbol": "cafe" 112 | }, 113 | "geometry": { 114 | "type": "Point", 115 | "coordinates": [ 116 | 113.979, 117 | 22.5428 118 | ] 119 | } 120 | }, 121 | { 122 | "type": "Feature", 123 | "properties": { 124 | "名称": "City Green Cafe 城市咖啡", 125 | "下载速度": "9.79 Mbps", 126 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1799809299", 127 | "评论 (@crispgm)": "开放式环境,座位大且舒服,所在的购物广场比较高级。", 128 | "卡布奇诺": "28 元(普通杯)", 129 | "marker-color": "#F3AE1A", 130 | "marker-symbol": "cafe" 131 | }, 132 | "geometry": { 133 | "type": "Point", 134 | "coordinates": [ 135 | 114.015, 136 | 22.5384 137 | ] 138 | } 139 | }, 140 | { 141 | "type": "Feature", 142 | "properties": { 143 | "名称": "Nordic Cafe", 144 | "下载速度": "9.14 Mbps", 145 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1801263880", 146 | "评论 (@crispgm)": "北欧极简风,餐具似乎都是北欧品牌 iittala 的,店里面还有 iittala 的展区,不知道两者的具体关系。有少量电源。", 147 | "卡布奇诺": "32 元(小杯)", 148 | "marker-color": "#F3AE1A", 149 | "marker-symbol": "cafe" 150 | }, 151 | "geometry": { 152 | "type": "Point", 153 | "coordinates": [ 154 | 113.985, 155 | 22.528 156 | ] 157 | } 158 | }, 159 | { 160 | "type": "Feature", 161 | "properties": { 162 | "名称": "Costa Coffee(海上世界广场店)", 163 | "下载速度": "2.88 Mbps", 164 | "Speedtest 链接": "http://www.speedtest.net/my-result/5775470173", 165 | "评论 (@bcho)": "环境不错,但网络太慢了。大部分座位都有电源。", 166 | "中杯美式": "28 元", 167 | "marker-color": "#C24740", 168 | "marker-symbol": "cafe" 169 | }, 170 | "geometry": { 171 | "type": "Point", 172 | "coordinates": [ 173 | 113.910865, 174 | 22.485677 175 | ] 176 | } 177 | }, 178 | { 179 | "type": "Feature", 180 | "properties": { 181 | "名称": "Starbucks 星巴克(创意文化园店)", 182 | "下载速度": "0.96 Mbps", 183 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1953095663", 184 | "评论 (@crispgm)": "春节期间人也爆满,但自身容量很大。网速跑分数值不高,但还是可用的状态。", 185 | "marker-color": "#C24740", 186 | "marker-symbol": "cafe" 187 | }, 188 | "geometry": { 189 | "type": "Point", 190 | "coordinates": [ 191 | 113.989, 192 | 22.5393 193 | ] 194 | } 195 | }, 196 | { 197 | "type": "Feature", 198 | "properties": { 199 | "名称": "Starbucks 星巴克(侨城路店)", 200 | "下载速度": "1.04 Mbps", 201 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1954508585", 202 | "评论 (@crispgm)": "网速慢但可用,环境不错,即使连室外都有插座。", 203 | "marker-color": "#C24740", 204 | "marker-symbol": "cafe" 205 | }, 206 | "geometry": { 207 | "type": "Point", 208 | "coordinates": [ 209 | 113.98, 210 | 22.5387 211 | ] 212 | } 213 | }, 214 | { 215 | "type": "Feature", 216 | "properties": { 217 | "名称": "漫咖啡(1979店)", 218 | "下载速度": "5.28 Mbps", 219 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1957282075", 220 | "评论 (@crispgm)": "场地很大,一二楼环境昏暗,三楼比较亮;基本每个座位都有插座。", 221 | "marker-color": "#F3AE1A", 222 | "marker-symbol": "cafe" 223 | }, 224 | "geometry": { 225 | "type": "Point", 226 | "coordinates": [ 227 | 114.026, 228 | 22.5551 229 | ] 230 | } 231 | }, 232 | { 233 | "type": "Feature", 234 | "properties": { 235 | "名称": "Starbucks 星巴克(深圳购书中心店)", 236 | "下载速度": "1.38 Mbps", 237 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2147894270", 238 | "评论 (@xhacker)": "环境不错,工作日晚上九点没什么人。", 239 | "厕所": "出门以后二层有。", 240 | "marker-color": "#C24740", 241 | "marker-symbol": "cafe" 242 | }, 243 | "geometry": { 244 | "type": "Point", 245 | "coordinates": [ 246 | 114.09, 247 | 22.5437 248 | ] 249 | } 250 | }, 251 | { 252 | "type": "Feature", 253 | "properties": { 254 | "名称": "GREYBOX Coffee", 255 | "下载速度": "1.12 Mbps", 256 | "评论 (@xhacker)": "环境不错、基本没人,网速很慢。", 257 | "厕所": "商场内有。", 258 | "marker-color": "#C24740", 259 | "marker-symbol": "cafe" 260 | }, 261 | "geometry": { 262 | "type": "Point", 263 | "coordinates": [ 264 | 113.97, 265 | 22.5401 266 | ] 267 | } 268 | }, 269 | { 270 | "type": "Feature", 271 | "properties": { 272 | "名称": "Seesaw Coffee(华润万象天地店)", 273 | "下载速度": "76.5 Mbps", 274 | "Speedtest 链接": "http://www.speedtest.net/result/i/2502494917", 275 | "评论 (@crispgm)": "“网红”咖啡平时人应该很多,春节期间比较清静,网速惊人。插座充足。", 276 | "marker-color": "#50C240", 277 | "marker-symbol": "cafe" 278 | }, 279 | "geometry": { 280 | "type": "Point", 281 | "coordinates": [ 282 | 113.953, 283 | 22.545 284 | ] 285 | } 286 | }, 287 | { 288 | "type": "Feature", 289 | "properties": { 290 | "名称": "Seesaw Coffee(深圳来福士店)", 291 | "下载速度": "12.00 Mbps", 292 | "Speedtest 链接": "https://www.speedtest.net/zh-Hans/result/i/2985393073", 293 | "评论 (@cdpath)": "上下行对等宽带。人少的时候网速会更快。", 294 | "参考价格": "30-70 元", 295 | "marker-color": "#50C240", 296 | "marker-symbol": "cafe" 297 | }, 298 | "geometry": { 299 | "type": "Point", 300 | "coordinates": [ 301 | 113.926, 302 | 22.511 303 | ] 304 | } 305 | } 306 | ] 307 | } 308 | -------------------------------------------------------------------------------- /shanghai.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "星巴克(控江旭辉商城店)", 8 | "下载速度": "32.84 Mbps", 9 | "Speedtest 链接": "http://beta.speedtest.net/result/6651019371", 10 | "香草星冰乐": "29元", 11 | "评论 (@clarkzjw)": "鞍山新村地铁站附近。网速很快,人流不多。", 12 | "marker-color": "#50C240", 13 | "marker-symbol": "cafe" 14 | }, 15 | "geometry": { 16 | "type": "Point", 17 | "coordinates": [ 18 | 121.505229, 19 | 31.275028 20 | ] 21 | } 22 | }, 23 | { 24 | "type": "Feature", 25 | "properties": { 26 | "名称": "猫的天空之城(新天地店)", 27 | "下载速度": "2.2 Mbps", 28 | "Speedtest 链接": "http://www.speedtest.net/my-result/4638301580", 29 | "参考价格": "25-30 元", 30 | "热拿铁": "28元", 31 | "评论 (@xhacker)": "共享新天地的免费 Wi-Fi,极慢。网速用 XTDStyle_free 测量。丝袜奶茶还不错。", 32 | "marker-color": "#C24740", 33 | "marker-symbol": "cafe" 34 | }, 35 | "geometry": { 36 | "type": "Point", 37 | "coordinates": [ 38 | 121.47075533866884, 39 | 31.21957297168918 40 | ] 41 | } 42 | }, 43 | { 44 | "type": "Feature", 45 | "properties": { 46 | "名称": "星巴克(800秀店)", 47 | "下载速度": "2.95 Mbps", 48 | "Speedtest 链接": "http://www.speedtest.net/my-result/4643633193", 49 | "大杯香草拿铁": "33元", 50 | "评论 (@aquarhead)": "其实就在我司楼下, 速度还可以(虽然远远比不上我司就是了www)", 51 | "marker-color": "#C24740", 52 | "marker-symbol": "cafe" 53 | }, 54 | "geometry": { 55 | "type": "Point", 56 | "coordinates": [ 57 | 121.43936, 58 | 31.2357 59 | ] 60 | } 61 | }, 62 | { 63 | "type": "Feature", 64 | "properties": { 65 | "名称": "delimuses", 66 | "下载速度": "3.75 Mbps", 67 | "Speedtest 链接": "http://www.speedtest.net/my-result/4652272975", 68 | "参考价格": "50-70元", 69 | "评论 (@aquarhead)": "也在我司附近, 一般人不会太多所以网速蛮不错的, 有吃有喝只是价格略贵上菜也比较慢", 70 | "marker-color": "#C24740", 71 | "marker-symbol": "cafe" 72 | }, 73 | "geometry": { 74 | "type": "Point", 75 | "coordinates": [ 76 | 121.43645, 77 | 31.23558 78 | ] 79 | } 80 | }, 81 | { 82 | "type": "Feature", 83 | "properties": { 84 | "名称": "Starbucks (CITIC Square)", 85 | "下载速度": "1.00 Mbps", 86 | "Speedtest 链接": "http://www.speedtest.net/my-result/4657045711", 87 | "评论 (@aquarhead)": "地方蛮大的, 有一张长方桌所以感觉挺不错的", 88 | "marker-color": "#C24740", 89 | "marker-symbol": "cafe" 90 | }, 91 | "geometry": { 92 | "type": "Point", 93 | "coordinates": [ 94 | 121.45072, 95 | 31.22968 96 | ] 97 | } 98 | }, 99 | { 100 | "type": "Feature", 101 | "properties": { 102 | "名称": "Wine Connection", 103 | "下载速度": "3.61 Mbps", 104 | "小杯拿铁": "30 元", 105 | "Speedtest 链接": "http://www.speedtest.net/my-result/4659526554", 106 | "评论 (@aquarhead)": "价位合理, 有早午餐正餐酒水齐全, 就在路边上但并不太吵", 107 | "marker-color": "#C24740", 108 | "marker-symbol": "cafe" 109 | }, 110 | "geometry": { 111 | "type": "Point", 112 | "coordinates": [ 113 | 121.43556, 114 | 31.22401 115 | ] 116 | } 117 | }, 118 | { 119 | "type": "Feature", 120 | "properties": { 121 | "名称": "Meo's Coffee", 122 | "下载速度": "16.00 Mbps", 123 | "大杯拿铁": "31 元", 124 | "Speedtest 链接": "http://www.speedtest.net/my-result/4659481377", 125 | "评论 (@ryaneof)": "地理位置很好,顾客很少,比较安静,网速也不错。", 126 | "marker-color": "#50C240", 127 | "marker-symbol": "cafe" 128 | }, 129 | "geometry": { 130 | "type": "Point", 131 | "coordinates": [ 132 | 121.5057491, 133 | 31.2352515 134 | ] 135 | } 136 | }, 137 | { 138 | "type": "Feature", 139 | "properties": { 140 | "名称": "Starbucks (Baoshan Road)", 141 | "下载速度": "22.00 Mbps", 142 | "大杯拿铁": "30 元", 143 | "Speedtest 链接": "http://www.speedtest.net/my-result/4673146632", 144 | "评论 (@ryaneof)": "宝山路地铁站 1 号口附近,平时顾客不多,星巴克门店中网速不错的一家店。", 145 | "marker-color": "#50C240", 146 | "marker-symbol": "cafe" 147 | }, 148 | "geometry": { 149 | "type": "Point", 150 | "coordinates": [ 151 | 121.4755588, 152 | 31.2529614 153 | ] 154 | } 155 | }, 156 | { 157 | "type": "Feature", 158 | "properties": { 159 | "名称": "Musk Cat Coffee", 160 | "下载速度": "78.00 Mbps", 161 | "冰拿铁": "38 元", 162 | "Speedtest 链接": "http://www.speedtest.net/my-result/4678162578", 163 | "评论 (@ryaneof)": "位于陆家嘴西路滨江大道,网速很赞,环境也很赞,周末人不多,坐在江边吹风感觉很好。", 164 | "marker-color": "#50C240", 165 | "marker-symbol": "cafe" 166 | }, 167 | "geometry": { 168 | "type": "Point", 169 | "coordinates": [ 170 | 121.497739, 171 | 31.235245 172 | ] 173 | } 174 | }, 175 | { 176 | "type": "Feature", 177 | "properties": { 178 | "名称": "SeeSaw Coffee", 179 | "下载速度": "11.00 Mbps", 180 | "冰拿铁": "32 元", 181 | "Speedtest 链接": "http://www.speedtest.net/my-result/4684014931", 182 | "评论 (@ryaneof)": "位于芮欧百货五层,店面不大,顾客不多,网速不错。", 183 | "marker-color": "#50C240", 184 | "marker-symbol": "cafe" 185 | }, 186 | "geometry": { 187 | "type": "Point", 188 | "coordinates": [ 189 | 121.4473343, 190 | 31.2226857 191 | ] 192 | } 193 | }, 194 | { 195 | "type": "Feature", 196 | "properties": { 197 | "名称": "Hunting the days (H Coffee)", 198 | "下载速度": "58.00 Mbps", 199 | "冰拿铁": "28 元", 200 | "Speedtest 链接": "http://www.speedtest.net/my-result/4686820709", 201 | "评论 (@ryaneof)": "位于晶品六层,环境有些嘈杂,咖啡非常难喝,但网速不错。", 202 | "marker-color": "#50C240", 203 | "marker-symbol": "cafe" 204 | }, 205 | "geometry": { 206 | "type": "Point", 207 | "coordinates": [ 208 | 121.447001, 209 | 31.226006 210 | ] 211 | } 212 | }, 213 | { 214 | "type": "Feature", 215 | "properties": { 216 | "名称": "Starbucks (Reel F3)", 217 | "下载速度": "18.00 Mbps", 218 | "大杯拿铁": "31 元", 219 | "Speedtest 链接": "http://www.speedtest.net/my-result/4692220583", 220 | "评论 (@ryaneof)": "位于芮欧三层,网速不错,但毕竟是星巴克,比较嘈杂,网络在人多时状况不好。", 221 | "marker-color": "#50C240", 222 | "marker-symbol": "cafe" 223 | }, 224 | "geometry": { 225 | "type": "Point", 226 | "coordinates": [ 227 | 121.44766, 228 | 31.223556 229 | ] 230 | } 231 | }, 232 | { 233 | "type": "Feature", 234 | "properties": { 235 | "名称": "Starbucks(碧波路店)", 236 | "下载速度": [ 237 | "5.08 Mbps", 238 | "10.74 Mbps" 239 | ], 240 | "浓缩咖啡星杯乐": "30 元", 241 | "大杯拿铁": "35 元", 242 | "Speedtest 链接 (@songzhou21)": "http://www.speedtest.net/my-result/4754734588", 243 | "Speedtest 链接 (@quietshu)": "http://www.speedtest.net/my-result/i/1429903361", 244 | "评论 (@songzhou21)": "网较差,经常断,人少(周末),但还是较嘈杂。", 245 | "评论 (@quietshu)": "网还好(*用手机测速……),地铁站附近,有轨电车起点站门口,周边人流量大,不过晚上店里人较少。", 246 | "marker-color": "#F3AE1A", 247 | "marker-symbol": "cafe" 248 | }, 249 | "geometry": { 250 | "type": "Point", 251 | "coordinates": [ 252 | 121.58083333333335, 253 | 31.20666666666667 254 | ] 255 | } 256 | }, 257 | { 258 | "type": "Feature", 259 | "properties": { 260 | "名称": "湾里书香 | Harbook+", 261 | "下载速度": "30.00 Mbps", 262 | "大杯拿铁": "38 元", 263 | "Speedtest 链接": "http://www.speedtest.net/my-result/4873748282", 264 | "评论 (@ryaneof)": "位于芮欧三层,网速一般,不太稳定,咖啡一般,有许多桌子和书,但是视觉很好,尤其靠窗座位。", 265 | "marker-color": "#50C240", 266 | "marker-symbol": "cafe" 267 | }, 268 | "geometry": { 269 | "type": "Point", 270 | "coordinates": [ 271 | 121.450364, 272 | 31.224659 273 | ] 274 | } 275 | }, 276 | { 277 | "type": "Feature", 278 | "properties": { 279 | "名称": "Starbucks(近铁城市广场店)", 280 | "下载速度": "22.00 Mbps", 281 | "大杯拿铁": "30 元", 282 | "Speedtest 链接": "http://www.speedtest.net/my-result/4861082276", 283 | "评论 (@ryaneof)": "比较新的店,即使人很多的情况下,网络质量也不错。", 284 | "marker-color": "#50C240", 285 | "marker-symbol": "cafe" 286 | }, 287 | "geometry": { 288 | "type": "Point", 289 | "coordinates": [ 290 | 121.377178, 291 | 31.235087 292 | ] 293 | } 294 | }, 295 | { 296 | "type": "Feature", 297 | "properties": { 298 | "名称": "Gloria Jean's Coffees(月星环球港店)", 299 | "下载速度": "10.00 Mbps", 300 | "大杯拿铁": "31 元", 301 | "Speedtest 链接": "http://www.speedtest.net/my-result/4891495073", 302 | "评论 (@ryaneof)": "店面不大,咖啡很好,即使人很多的情况下,网络质量也不错。", 303 | "marker-color": "#50C240", 304 | "marker-symbol": "cafe" 305 | }, 306 | "geometry": { 307 | "type": "Point", 308 | "coordinates": [ 309 | 121.40759468078613, 310 | 31.234362178542792 311 | ] 312 | } 313 | }, 314 | { 315 | "type": "Feature", 316 | "properties": { 317 | "名称": "Costa Coffee(我格广场店)", 318 | "下载速度": "6.00 Mbps", 319 | "小杯巧克力": "27 元", 320 | "Speedtest 链接": "http://www.speedtest.net/my-result/5087420287", 321 | "评论 (@xavierchow)": "网络质量一般,平日人比较少,周末人太多太闹不建议去。", 322 | "marker-color": "#F3AE1A", 323 | "marker-symbol": "cafe" 324 | }, 325 | "geometry": { 326 | "type": "Point", 327 | "coordinates": [ 328 | 121.4192355, 329 | 31.239444 330 | ] 331 | } 332 | }, 333 | { 334 | "type": "Feature", 335 | "properties": { 336 | "名称": "咖咖奥咖啡厅(Kacao 田林店)", 337 | "下载速度": "10.53 Mbps", 338 | "榛果拿铁": "32 元", 339 | "Speedtest 链接": "http://www.speedtest.net/my-result/5087420287", 340 | "评论 (@xavierchow)": "环境相当不错,空间也很大,唯一不好的2楼不是禁烟的。", 341 | "marker-symbol": "cafe", 342 | "marker-color": "#50C240" 343 | }, 344 | "geometry": { 345 | "type": "Point", 346 | "coordinates": [ 347 | 121.40790581703187, 348 | 31.171675667662882 349 | ] 350 | } 351 | }, 352 | { 353 | "type": "Feature", 354 | "properties": { 355 | "名称": "Caffebene(悦达889店)", 356 | "营业状态": "停业", 357 | "下载速度": "56.33 Mbps", 358 | "蜂蜜姜茶": "28 元", 359 | "Speedtest 链接": "http://www.speedtest.net/my-result/5104202266", 360 | "评论 (@xavierchow)": "网速非常快,咖啡和点心不好吃,室内位置较少,室外空间挺大,就是冬天如果没太阳有点冷。", 361 | "marker-symbol": "cafe", 362 | "marker-color": "#BEBEBE" 363 | }, 364 | "geometry": { 365 | "type": "Point", 366 | "coordinates": [ 367 | 121.42351627349854, 368 | 31.231233885488006 369 | ] 370 | } 371 | }, 372 | { 373 | "type": "Feature", 374 | "properties": { 375 | "名称": "HOLLYS COFFEE(仲盛世界商城)", 376 | "下载速度": "1.54 Mbps", 377 | "大杯拿铁": "30 元", 378 | "Speedtest 链接": "http://www.speedtest.net/my-result/5115524542", 379 | "marker-symbol": "cafe", 380 | "marker-color": "#C24740" 381 | }, 382 | "geometry": { 383 | "type": "Point", 384 | "coordinates": [ 385 | 121.38255, 386 | 31.1084 387 | ] 388 | } 389 | }, 390 | { 391 | "type": "Feature", 392 | "properties": { 393 | "名称": "咖咖奥咖啡厅(Kacao 圣诺亚店)", 394 | "下载速度": "7.95 Mbps", 395 | "白巧克力咖啡摩卡": "32 元", 396 | "Speedtest 链接": "http://www.speedtest.net/my-result/5121292721", 397 | "评论 (@xavierchow)": "Kacao的环境一如既往的好,店在汤连得温泉馆边上,不知道是不是新开的原因有点装修的油漆味:(", 398 | "marker-symbol": "cafe", 399 | "marker-color": "#F3AE1A" 400 | }, 401 | "geometry": { 402 | "type": "Point", 403 | "coordinates": [ 404 | 121.371751, 405 | 31.233513 406 | ] 407 | } 408 | }, 409 | { 410 | "type": "Feature", 411 | "properties": { 412 | "名称": "Staytion Coffee & Bake", 413 | "下载速度": "24.00 Mbps", 414 | "大杯拿铁": "31 元", 415 | "Speedtest 链接": "http://www.speedtest.net/my-result/4986683376", 416 | "评论 (@ryaneof)": "位于中信广场,环境很好,网络不错,咖啡一般。", 417 | "marker-color": "#50C240", 418 | "marker-symbol": "cafe" 419 | }, 420 | "geometry": { 421 | "type": "Point", 422 | "coordinates": [ 423 | 121.47938668727875, 424 | 31.249745267827233 425 | ] 426 | } 427 | }, 428 | { 429 | "type": "Feature", 430 | "properties": { 431 | "名称": "Pacific Coffee (Global Harbor)", 432 | "下载速度": "7.00 Mbps", 433 | "大杯拿铁": "30 元", 434 | "Speedtest 链接": "http://www.speedtest.net/my-result/5041676642", 435 | "评论 (@ryaneof)": "位于环球港四层,太平洋咖啡大家都懂的,以难喝出名。正因为这样在周六高峰时间只有它家有座位。。", 436 | "marker-color": "#F3AE1A", 437 | "marker-symbol": "cafe" 438 | }, 439 | "geometry": { 440 | "type": "Point", 441 | "coordinates": [ 442 | 121.40750885009766, 443 | 31.23401357623354 444 | ] 445 | } 446 | }, 447 | { 448 | "type": "Feature", 449 | "properties": { 450 | "名称": "CAFÉ & BAR PRONTO", 451 | "下载速度": "18.00 Mbps", 452 | "大杯拿铁": "32 元", 453 | "Speedtest 链接": "http://www.speedtest.net/my-result/5138579056", 454 | "评论 (@ryaneof)": "位于日月光一层,环境不错,店铺面积不小,顾客数量多,会比较吵,网络比较稳定,咖啡杯子很大,喜欢大杯拿铁可以考虑再加一份浓缩。", 455 | "marker-color": "#50C240", 456 | "marker-symbol": "cafe" 457 | }, 458 | "geometry": { 459 | "type": "Point", 460 | "coordinates": [ 461 | 121.46427512168884, 462 | 31.208653896329757 463 | ] 464 | } 465 | }, 466 | { 467 | "type": "Feature", 468 | "properties": { 469 | "名称": "Starbucks (Imago)", 470 | "下载速度": "15.86 Mbps", 471 | "榛果风味拿铁": "30 元", 472 | "Speedtest 链接": "http://www.speedtest.net/my-result/5206305714", 473 | "评论 (@xavierchow)": "Starbucks的咖啡就不评论了,店内位置很少, 有部分座位在商场大厅环境较嘈杂", 474 | "marker-symbol": "cafe", 475 | "marker-color": "#50C240" 476 | }, 477 | "geometry": { 478 | "type": "Point", 479 | "coordinates": [ 480 | 121.418731, 481 | 31.239784 482 | ] 483 | } 484 | }, 485 | { 486 | "type": "Feature", 487 | "properties": { 488 | "名称": "Starbucks (美罗城)", 489 | "下载速度": "76.11 Mbps", 490 | "中杯拿铁": "27 元", 491 | "Speedtest 链接": "http://www.speedtest.net/my-result/5244519566", 492 | "评论 (@xavierchow)": "至今为止我碰到的最好网速的星巴克,缺点就是环境比较闹,毕竟是黄金地段。", 493 | "marker-symbol": "cafe", 494 | "marker-color": "#50C240" 495 | }, 496 | "geometry": { 497 | "type": "Point", 498 | "coordinates": [ 499 | 121.434838, 500 | 31.196132 501 | ] 502 | } 503 | }, 504 | { 505 | "type": "Feature", 506 | "properties": { 507 | "名称": "Starbucks (中山万博国际中心)", 508 | "下载速度": "4.15 Mbps", 509 | "中杯拿铁": "27 元", 510 | "Speedtest 链接": "http://www.speedtest.net/my-result/5252949393", 511 | "评论 (@xavierchow)": "网速很一般,非常奇怪大叔大妈好多-_-bb", 512 | "marker-symbol": "cafe", 513 | "marker-color": "#F3AE1A" 514 | }, 515 | "geometry": { 516 | "type": "Point", 517 | "coordinates": [ 518 | 121.418313, 519 | 31.19911 520 | ] 521 | } 522 | }, 523 | { 524 | "type": "Feature", 525 | "properties": { 526 | "名称": "Costa Coffee (Global Harbor)", 527 | "下载速度": "12.00 Mbps", 528 | "大杯拿铁": "34 元", 529 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1572918665", 530 | "评论 (@ryaneof)": "位于环球港 B1 层,环境还好,客流量不大。他家咖啡一直不错。这家店网络质量最近变好了一点,并且才发现还有靠近商场停车场的露天座位。", 531 | "marker-color": "#50C240", 532 | "marker-symbol": "cafe" 533 | }, 534 | "geometry": { 535 | "type": "Point", 536 | "coordinates": [ 537 | 121.40785217285155, 538 | 31.23474747433544 539 | ] 540 | } 541 | }, 542 | { 543 | "type": "Feature", 544 | "properties": { 545 | "名称": "SeeSaw Coffee (淮海 755)", 546 | "下载速度": "19.00 Mbps", 547 | "大杯拿铁": "32 元", 548 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1593392666", 549 | "评论 (@ryaneof)": "位于淮海中路,店面不大,周末人多,咖啡一如其他连锁店一样好喝。", 550 | "marker-color": "#50C240", 551 | "marker-symbol": "cafe" 552 | }, 553 | "geometry": { 554 | "type": "Point", 555 | "coordinates": [ 556 | 121.45970463752745, 557 | 31.220784085547034 558 | ] 559 | } 560 | }, 561 | { 562 | "type": "Feature", 563 | "properties": { 564 | "名称": "Costa Coffee(九六广场店)", 565 | "下载速度": "2.00 Mbps", 566 | "大杯拿铁": "31 元", 567 | "Speedtest 链接": "www.speedtest.net/my-result/i/1617859652", 568 | "评论 (@ryaneof)": "位于九六广场一层,座位比较多,周末环境嘈杂,网速很慢。", 569 | "marker-color": "#C24740", 570 | "marker-symbol": "cafe" 571 | }, 572 | "geometry": { 573 | "type": "Point", 574 | "coordinates": [ 575 | 121.52026891708374, 576 | 31.229371538681537 577 | ] 578 | } 579 | }, 580 | { 581 | "type": "Feature", 582 | "properties": { 583 | "名称": "Starbucks (漕河泾店)", 584 | "下载速度": "1.01 Mbps", 585 | "中杯拿铁": "27 元", 586 | "Speedtest 链接": "http://www.speedtest.net/my-result/5276464409", 587 | "评论 (@xavierchow)": "位于漕河泾创新大厦底楼,楼上是星巴克总部,算是星巴克大本营了网速居然这么慢...", 588 | "marker-symbol": "cafe", 589 | "marker-color": "#C24740" 590 | }, 591 | "geometry": { 592 | "type": "Point", 593 | "coordinates": [ 594 | 121.396629, 595 | 31.173246 596 | ] 597 | } 598 | }, 599 | { 600 | "type": "Feature", 601 | "properties": { 602 | "名称": "MANGOSIX (静安寺店)", 603 | "下载速度": "20.16 Mbps", 604 | "中杯拿铁": "31 元", 605 | "Speedtest 链接": "www.speedtest.net/my-result/i/1639012202", 606 | "评论 (@z4rd)": "晶品旁,久光对面,愚园路上,手机微信直接连,电脑要手机验证,一般般", 607 | "marker-symbol": "cafe", 608 | "marker-color": "#50C240" 609 | }, 610 | "geometry": { 611 | "type": "Point", 612 | "coordinates": [ 613 | 121.441052, 614 | 31.226492 615 | ] 616 | } 617 | }, 618 | { 619 | "type": "Feature", 620 | "properties": { 621 | "名称": "AUNN CAFE &CO", 622 | "下载速度": "5.76 Mbps", 623 | "大杯拿铁": "35 元", 624 | "Speedtest 链接": "http://www.speedtest.net/my-result/5305144009", 625 | "评论 (@z4rd)": "位于黄金地段 不喜欢咖啡馆的布局 不过听说手冲咖啡不错 楼上精品店值得一逛", 626 | "marker-symbol": "cafe", 627 | "marker-color": "#F3AE1A" 628 | }, 629 | "geometry": { 630 | "type": "Point", 631 | "coordinates": [ 632 | 121.44046, 633 | 31.224243 634 | ] 635 | } 636 | }, 637 | { 638 | "type": "Feature", 639 | "properties": { 640 | "名称": "Starbucks (虹桥火车站出发区店)", 641 | "下载速度": "2.91 Mbps", 642 | "大杯拿铁": "31 元", 643 | "Speedtest 链接": "http://www.speedtest.net/my-result/5482642377", 644 | "评论 (@xavierchow)": "位于出发区北侧2楼,位置还是很多的,就是环境一般比较嘈杂", 645 | "marker-symbol": "cafe", 646 | "marker-color": "#C24740" 647 | }, 648 | "geometry": { 649 | "type": "Point", 650 | "coordinates": [ 651 | 121.316548, 652 | 31.195516 653 | ] 654 | } 655 | }, 656 | { 657 | "type": "Feature", 658 | "properties": { 659 | "名称": "Starbucks (静安门大厦店)", 660 | "下载速度": "2.91 Mbps", 661 | "大杯拿铁": "31 元", 662 | "Speedtest 链接": "http://www.speedtest.net/my-result/5514651758", 663 | "评论 (@xavierchow)": "网速一般,上下有2层楼位置较多", 664 | "marker-symbol": "cafe", 665 | "marker-color": "#C24740" 666 | }, 667 | "geometry": { 668 | "type": "Point", 669 | "coordinates": [ 670 | 121.434352, 671 | 31.239224 672 | ] 673 | } 674 | }, 675 | { 676 | "type": "Feature", 677 | "properties": { 678 | "名称": "李小姐の猫咖啡馆", 679 | "下载速度": "21.50 Mbps", 680 | "香草拿铁": "38 元", 681 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1827538221", 682 | "评论 (@LilianYe)": "猫咖啡馆,上下两层,有十多只可爱的猫咪,大概无法好好干活。", 683 | "marker-symbol": "cafe", 684 | "marker-color": "#50C240" 685 | }, 686 | "geometry": { 687 | "type": "Point", 688 | "coordinates": [ 689 | 121.447, 690 | 31.2347 691 | ] 692 | } 693 | }, 694 | { 695 | "type": "Feature", 696 | "properties": { 697 | "名称": "Trident Coffee", 698 | "下载速度": "22.44 Mbps", 699 | "大杯拿铁": "35 元", 700 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1836700422", 701 | "评论 (@LilianYe)": "外滩边上一个很小的一个咖啡馆,只适合聊聊天什么的。", 702 | "marker-symbol": "cafe", 703 | "marker-color": "#50C240" 704 | }, 705 | "geometry": { 706 | "type": "Point", 707 | "coordinates": [ 708 | 121.486, 709 | 31.2375 710 | ] 711 | } 712 | }, 713 | { 714 | "type": "Feature", 715 | "properties": { 716 | "名称": "Starbucks (新淮海坊店)", 717 | "下载速度": "1.53 Mbps", 718 | "大杯拿铁": "31 元", 719 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1839446250", 720 | "厕所": "有", 721 | "评论 (@LilianYe)": "离虹桥路地铁站最近的一个星巴克,只有一楼,午后来买咖啡会排队较久。", 722 | "marker-symbol": "cafe", 723 | "marker-color": "#C24740" 724 | }, 725 | "geometry": { 726 | "type": "Point", 727 | "coordinates": [ 728 | 121.418, 729 | 31.1984 730 | ] 731 | } 732 | }, 733 | { 734 | "type": "Feature", 735 | "properties": { 736 | "名称": "Starbucks (越界店)", 737 | "下载速度": "1.03 Mbps", 738 | "大杯拿铁": "31 元", 739 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1853980266", 740 | "厕所": "有", 741 | "评论 (@LilianYe)": "网速依旧慢的感人,周末下午还蛮多人的。", 742 | "marker-symbol": "cafe", 743 | "marker-color": "#C24740" 744 | }, 745 | "geometry": { 746 | "type": "Point", 747 | "coordinates": [ 748 | 121.407, 749 | 31.1713 750 | ] 751 | } 752 | }, 753 | { 754 | "type": "Feature", 755 | "properties": { 756 | "名称": "MANGOSIX (田林路店)", 757 | "下载速度": "2.40 Mbps", 758 | "中杯拿铁": "31 元", 759 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1863749217", 760 | "厕所": "店内没有,可以用大楼内的厕所", 761 | "评论 (@LilianYe)": "手机上WIFI要通过微信连接,电脑要手机验证,网速较慢,空间比较宽敞,沙发位置有电源插座", 762 | "marker-symbol": "cafe", 763 | "marker-color": "#C24740" 764 | }, 765 | "geometry": { 766 | "type": "Point", 767 | "coordinates": [ 768 | 121.412, 769 | 31.1741 770 | ] 771 | } 772 | }, 773 | { 774 | "type": "Feature", 775 | "properties": { 776 | "名称": "雕刻时光咖啡馆 (红坊店)", 777 | "下载速度": "10.37 Mbps", 778 | "小杯拿铁": "30 元", 779 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1916507389", 780 | "厕所": "无", 781 | "评论 (@LilianYe)": "空间很宽敞,有音乐,但不吵。靠墙位置有电源插座,食物一般。", 782 | "marker-symbol": "cafe", 783 | "marker-color": "#50C240" 784 | }, 785 | "geometry": { 786 | "type": "Point", 787 | "coordinates": [ 788 | 121.421, 789 | 31.2009 790 | ] 791 | } 792 | }, 793 | { 794 | "type": "Feature", 795 | "properties": { 796 | "名称": "赞咖啡 Nice Cafe & Books", 797 | "下载速度": "25.29 Mbps", 798 | "拿铁咖啡": "30 元", 799 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1917732687", 800 | "厕所": "有", 801 | "评论 (@LilianYe)": "空间宽敞,有两层,音乐舒缓。地上有挺多插排的,就是空调不热。", 802 | "marker-symbol": "cafe", 803 | "marker-color": "#50C240" 804 | }, 805 | "geometry": { 806 | "type": "Point", 807 | "coordinates": [ 808 | 121.42, 809 | 31.1996 810 | ] 811 | } 812 | }, 813 | { 814 | "type": "Feature", 815 | "properties": { 816 | "名称": "Starbucks (宝乐汇店)", 817 | "下载速度": "3.87 Mbps", 818 | "大杯馥芮白": "36 元", 819 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1915277364", 820 | "评论 (@crispgm)": "测速很一般,但实际访问速度还不错。插座有但非常少。", 821 | "marker-symbol": "cafe", 822 | "marker-color": "#C24740" 823 | }, 824 | "geometry": { 825 | "type": "Point", 826 | "coordinates": [ 827 | 121.481, 828 | 31.4015 829 | ] 830 | } 831 | }, 832 | { 833 | "type": "Feature", 834 | "properties": { 835 | "名称": "流光漫影 gallery & coffee", 836 | "下载速度": "0.90 Mbps", 837 | "抹茶牛奶": "35 元", 838 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1925937915", 839 | "厕所": "有", 840 | "评论 (@LilianYe)": "面积很小,很多艺术相关的书籍。靠墙有插座。可惜网速太慢。", 841 | "marker-symbol": "cafe", 842 | "marker-color": "#C24740" 843 | }, 844 | "geometry": { 845 | "type": "Point", 846 | "coordinates": [ 847 | 121.44, 848 | 31.2141 849 | ] 850 | } 851 | }, 852 | { 853 | "type": "Feature", 854 | "properties": { 855 | "名称": "莫奈咖啡 Monet Cafe", 856 | "下载速度": "6.78 Mbps", 857 | "拿铁": "48 元", 858 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1934316618", 859 | "厕所": "有", 860 | "评论 (@LilianYe)": "只有几个位置,装修很欧式,更像家具店,隔壁是理发店。价位偏高。", 861 | "marker-symbol": "cafe", 862 | "marker-color": "#F3AE1A" 863 | }, 864 | "geometry": { 865 | "type": "Point", 866 | "coordinates": [ 867 | 121.446, 868 | 31.215 869 | ] 870 | } 871 | }, 872 | { 873 | "type": "Feature", 874 | "properties": { 875 | "名称": "星巴克(中惠广场店)", 876 | "下载速度": "3.24 Mbps", 877 | "轻烤福栗拿铁": "26 元", 878 | "Speedtest 链接": "http://www.speedtest.net/my-result/6029494988", 879 | "厕所": "隔壁大厦有", 880 | "评论 (@xavierchow)": "位置比较偏的关系,晚上人真的很少,有电源, 21点打烊。", 881 | "marker-symbol": "cafe", 882 | "marker-color": "#C24740" 883 | }, 884 | "geometry": { 885 | "type": "Point", 886 | "coordinates": [ 887 | 121.604749, 888 | 31.254968 889 | ] 890 | } 891 | }, 892 | { 893 | "type": "Feature", 894 | "properties": { 895 | "名称": "PROTOSS", 896 | "下载速度": "31.73 Mbps", 897 | "本质奶咖": "23 元", 898 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1971600260", 899 | "厕所": "有", 900 | "评论 (@LilianYe)": "新开的咖啡馆,空间非常宽敞,装修清新,插座还有usb口。", 901 | "marker-symbol": "cafe", 902 | "marker-color": "#50C240" 903 | }, 904 | "geometry": { 905 | "type": "Point", 906 | "coordinates": [ 907 | 121.407, 908 | 31.1712 909 | ] 910 | } 911 | }, 912 | { 913 | "type": "Feature", 914 | "properties": { 915 | "名称": "COSTA(上海盛邦国际店)", 916 | "下载速度": "1.22 Mbps", 917 | "中杯香草拿铁": "34 元", 918 | "Speedtest 链接": "http://beta.speedtest.net/result/6163466169", 919 | "厕所": "无", 920 | "评论 (@sinchang)": "在盛邦国际大厦一楼,四川北路地铁旁,下午人不多。", 921 | "marker-symbol": "cafe", 922 | "marker-color": "#C24740" 923 | }, 924 | "geometry": { 925 | "type": "Point", 926 | "coordinates": [ 927 | 121.480138, 928 | 31.25399 929 | ] 930 | } 931 | }, 932 | { 933 | "type": "Feature", 934 | "properties": { 935 | "名称": "星巴克(新大陆广场店)", 936 | "下载速度": "22.90 Mbps", 937 | "大杯抹茶星冰乐": "34 元", 938 | "Speedtest 链接": "http://beta.speedtest.net/result/6381348977", 939 | "厕所": "无", 940 | "评论 (@sinchang)": "工作日人不是很多,旁边是有美食广场以及数码广场。", 941 | "marker-symbol": "cafe", 942 | "marker-color": "#50C240" 943 | }, 944 | "geometry": { 945 | "type": "Point", 946 | "coordinates": [ 947 | 121.513886, 948 | 31.231487 949 | ] 950 | } 951 | }, 952 | { 953 | "type": "Feature", 954 | "properties": { 955 | "名称": "星巴克(红房子店)", 956 | "下载速度": "22.06 Mbps", 957 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2144020365", 958 | "厕所": "二层有,但卫生条件不好", 959 | "评论 (@xhacker)": "地方挺大的,人不太多。", 960 | "marker-symbol": "cafe", 961 | "marker-color": "#50C240" 962 | }, 963 | "geometry": { 964 | "type": "Point", 965 | "coordinates": [ 966 | 121.453, 967 | 31.2224 968 | ] 969 | } 970 | }, 971 | { 972 | "type": "Feature", 973 | "properties": { 974 | "名称": "星巴克(陆家嘴国际华城店)", 975 | "下载速度": "23.40 Mbps", 976 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2141221925", 977 | "评论 (@xhacker)": "地方挺大的,人不太多。", 978 | "marker-symbol": "cafe", 979 | "marker-color": "#50C240" 980 | }, 981 | "geometry": { 982 | "type": "Point", 983 | "coordinates": [ 984 | 121.533, 985 | 31.2364 986 | ] 987 | } 988 | }, 989 | { 990 | "type": "Feature", 991 | "properties": { 992 | "名称": "星巴克(巴黎春天长寿路店)", 993 | "下载速度": "0.88 Mbps", 994 | "Speedtest 链接": "http://beta.speedtest.net/result/6677782668", 995 | "评论 (@xavierchow)": "对面就是长寿公园,临街视野不错,网速实在是不行。", 996 | "marker-color": "#C24740", 997 | "marker-symbol": "cafe" 998 | }, 999 | "geometry": { 1000 | "type": "Point", 1001 | "coordinates": [ 1002 | 121.436319, 1003 | 31.244731 1004 | ] 1005 | } 1006 | }, 1007 | { 1008 | "type": "Feature", 1009 | "properties": { 1010 | "名称": "星巴克(金桥国际商业广场店)", 1011 | "下载速度": "1.13 Mbps", 1012 | "Speedtest 链接": "http://www.speedtest.net/my-result/a/3382540953", 1013 | "评论(@marlinl)": "平常时候人比较多,网速实在不行,在外面坐着根本就没有速度", 1014 | "marker-color": "#C24740", 1015 | "marker-symbol": "cafe" 1016 | }, 1017 | "geometry": { 1018 | "type": "Point", 1019 | "coordinates": [ 1020 | 121.575, 1021 | 31.259 1022 | ] 1023 | } 1024 | }, 1025 | { 1026 | "type": "Feature", 1027 | "properties": { 1028 | "名称": "Zoo Coffee(丹巴路店)", 1029 | "下载速度": "31.25 Mbps", 1030 | "Speedtest 链接": "http://beta.speedtest.net/result/6926316803", 1031 | "评论(@xavierchow)": "人很少,网速很赞", 1032 | "marker-color": "#50C240", 1033 | "marker-symbol": "cafe" 1034 | }, 1035 | "geometry": { 1036 | "type": "Point", 1037 | "coordinates": [ 1038 | 121.375853, 1039 | 31.22429 1040 | ] 1041 | } 1042 | }, 1043 | { 1044 | "type": "Feature", 1045 | "properties": { 1046 | "名称": "星巴克(合生汇店)", 1047 | "下载速度": "2.90 Mbps", 1048 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2750299527", 1049 | "评论(@xhacker)": "地方挺大的,人不算特别多。在合生汇地下一层。", 1050 | "厕所": "商场内附近有厕所。", 1051 | "marker-color": "#C24740", 1052 | "marker-symbol": "cafe" 1053 | }, 1054 | "geometry": { 1055 | "type": "Point", 1056 | "coordinates": [ 1057 | 121.514, 1058 | 31.303 1059 | ] 1060 | } 1061 | }, 1062 | { 1063 | "type": "Feature", 1064 | "properties": { 1065 | "名称": "B5 Coffee", 1066 | "下载速度": "25.06 Mbps", 1067 | "Speedtest 链接": "http://www.speedtest.net/result/7543122015", 1068 | "评论(@xavierchow)": "在汉森家具商场里,人不多,网络给力", 1069 | "厕所": "商场内附近有厕所。", 1070 | "电源": "充足", 1071 | "marker-color": "#50C240", 1072 | "marker-symbol": "cafe" 1073 | }, 1074 | "geometry": { 1075 | "type": "Point", 1076 | "coordinates": [ 1077 | 121.422402, 1078 | 31.230591 1079 | ] 1080 | } 1081 | }, 1082 | { 1083 | "type": "Feature", 1084 | "properties": { 1085 | "名称": "矢量咖啡", 1086 | "下载速度": "78.59 Mbps", 1087 | "Speedtest 链接": "http://www.speedtest.net/result/7617999691", 1088 | "评论(@xavierchow)": "长风大悦城4楼,连着书店,网速很快", 1089 | "厕所": "商场内附近有厕所。", 1090 | "电源": "充足", 1091 | "marker-color": "#50C240", 1092 | "marker-symbol": "cafe" 1093 | }, 1094 | "geometry": { 1095 | "type": "Point", 1096 | "coordinates": [ 1097 | 121.390105, 1098 | 31.224619 1099 | ] 1100 | } 1101 | }, 1102 | { 1103 | "type": "Feature", 1104 | "properties": { 1105 | "名称": "Vesh Coffee", 1106 | "下载速度": "7.29 Mbps", 1107 | "Speedtest 链接": "http://www.speedtest.net/result/7658854203", 1108 | "评论(@xavierchow)": "空间很大,咖啡还ok", 1109 | "厕所": "有", 1110 | "电源": "大概三分之一位置有", 1111 | "marker-color": "#F3AE1A", 1112 | "marker-symbol": "cafe" 1113 | }, 1114 | "geometry": { 1115 | "type": "Point", 1116 | "coordinates": [ 1117 | 121.41874, 1118 | 31.213329 1119 | ] 1120 | } 1121 | }, 1122 | { 1123 | "type": "Feature", 1124 | "properties": { 1125 | "名称": "Seesaw Coffee(国金中心店)", 1126 | "下载速度": "0.41 Mbps", 1127 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3053921859", 1128 | "评论 (@xhacker)": "在国金中心LG1。开放的环境,座位比较少,有点吵闹。手冲很赞。有电源。", 1129 | "marker-color": "#C24740", 1130 | "marker-symbol": "cafe" 1131 | }, 1132 | "geometry": { 1133 | "type": "Point", 1134 | "coordinates": [ 1135 | 121.499, 1136 | 31.238 1137 | ] 1138 | } 1139 | }, 1140 | { 1141 | "type": "Feature", 1142 | "properties": { 1143 | "名称": "星巴克(衡山坊店)", 1144 | "下载速度": "0.57 Mbps", 1145 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3113038788", 1146 | "评论(@xhacker)": "一栋很漂亮的小楼。人不算少,基本恰好坐满。", 1147 | "marker-color": "#C24740", 1148 | "marker-symbol": "cafe" 1149 | }, 1150 | "geometry": { 1151 | "type": "Point", 1152 | "coordinates": [ 1153 | 121.435, 1154 | 31.198 1155 | ] 1156 | } 1157 | }, 1158 | { 1159 | "type": "Feature", 1160 | "properties": { 1161 | "名称": "Periwinkle", 1162 | "下载速度": "10.04 Mbps", 1163 | "Speedtest 链接": "https://www.speedtest.net/result/8083701234", 1164 | "评论(@xavierchow)": "悦达889二楼,位置宽敞,部分位置有电源。", 1165 | "marker-symbol": "cafe", 1166 | "marker-color": "#50C240" 1167 | }, 1168 | "geometry": { 1169 | "type": "Point", 1170 | "coordinates": [ 1171 | 121.423507, 1172 | 31.230998 1173 | ] 1174 | } 1175 | }, 1176 | { 1177 | "type": "Feature", 1178 | "properties": { 1179 | "名称": "巴黎贝甜(长寿店)", 1180 | "下载速度": "22.8 Mbps", 1181 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3537400713", 1182 | "评论(@xhacker)": "地方挺大的,网速快,无电源。", 1183 | "marker-symbol": "cafe", 1184 | "marker-color": "#50C240" 1185 | }, 1186 | "geometry": { 1187 | "type": "Point", 1188 | "coordinates": [ 1189 | 121.434, 1190 | 31.241 1191 | ] 1192 | } 1193 | }, 1194 | { 1195 | "type": "Feature", 1196 | "properties": { 1197 | "名称": "Tims Coffee House(漕河泾店)", 1198 | "下载速度": "2.60 Mbps", 1199 | "中杯美式": "22 元", 1200 | "Speedtest 链接": "https://www.speedtest.net/my-result/d/147003702", 1201 | "评论(@clarkzjw)": "地方不大,约有20个座位,只有一处电源插座,网速慢", 1202 | "marker-symbol": "cafe", 1203 | "marker-color": "#C24740" 1204 | }, 1205 | "geometry": { 1206 | "type": "Point", 1207 | "coordinates": [ 1208 | 121.398, 1209 | 31.166 1210 | ] 1211 | } 1212 | }, 1213 | { 1214 | "type": "Feature", 1215 | "properties": { 1216 | "名称": "M Stand", 1217 | "下载速度": "87.19 Mbps", 1218 | "Dirty": "34 元", 1219 | "澳白": "34 元", 1220 | "Speedtest 链接": "https://www.speedtest.net/result/i/4039755462", 1221 | "评论(@octref)": "精品咖啡,黑白工业风。美式流行音乐。Dirty / 澳白出品不错。", 1222 | "厕所": "有", 1223 | "电源": "充足", 1224 | "marker-symbol": "cafe", 1225 | "marker-color": "#50C240" 1226 | }, 1227 | "geometry": { 1228 | "type": "Point", 1229 | "coordinates": [ 1230 | 121.453, 1231 | 31.207 1232 | ] 1233 | } 1234 | }, 1235 | { 1236 | "type": "Feature", 1237 | "properties": { 1238 | "名称": "Coffee is", 1239 | "下载速度": "40.1 Mbps", 1240 | "Dirty SOE": "28 元", 1241 | "小杯拿铁": "15 元", 1242 | "大杯拿铁": "20 元", 1243 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/4041545490", 1244 | "评论(@octref)": "咖啡不贵,但出品还行。店面不大但环境不错。周中人下午很多。厕所在隔壁。适合办公。", 1245 | "厕所": "有", 1246 | "电源": "有", 1247 | "marker-symbol": "cafe", 1248 | "marker-color": "#50C240" 1249 | }, 1250 | "geometry": { 1251 | "type": "Point", 1252 | "coordinates": [ 1253 | 121.453, 1254 | 31.209 1255 | ] 1256 | } 1257 | }, 1258 | { 1259 | "type": "Feature", 1260 | "properties": { 1261 | "名称": "谭咖啡", 1262 | "下载速度": "14.1 Mbps", 1263 | "冰海盐拿铁": "27 元", 1264 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/4043394930", 1265 | "评论(@octref)": "咖啡一般,但品种很多也都不贵。适合坐一下午。吧台,靠窗位和 high rise 的座位都有。", 1266 | "厕所": "有", 1267 | "电源": "有", 1268 | "marker-symbol": "cafe", 1269 | "marker-color": "#50C240" 1270 | }, 1271 | "geometry": { 1272 | "type": "Point", 1273 | "coordinates": [ 1274 | 121.443, 1275 | 31.202 1276 | ] 1277 | } 1278 | }, 1279 | { 1280 | "type": "Feature", 1281 | "properties": { 1282 | "名称": "Big Sur", 1283 | "下载速度": "1.09 Mbps", 1284 | "冰拿铁": "25 元", 1285 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/4045205495", 1286 | "评论(@octref)": "咖啡一般,环境不错,冷气很足,网比较慢。", 1287 | "厕所": "有", 1288 | "电源": "有", 1289 | "marker-symbol": "cafe", 1290 | "marker-color": "#C24740" 1291 | }, 1292 | "geometry": { 1293 | "type": "Point", 1294 | "coordinates": [ 1295 | 121.456, 1296 | 31.206 1297 | ] 1298 | } 1299 | }, 1300 | { 1301 | "type": "Feature", 1302 | "properties": { 1303 | "名称": "Nonagon", 1304 | "下载速度": "50.1 Mbps", 1305 | "Iced Dalgona Coffee": "30 元", 1306 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/4045205495", 1307 | "评论(@octref)": "咖啡一般,只有一张桌子,墙边没法放电脑。适合来喝咖啡聊天,不适合长期工作。", 1308 | "厕所": "无", 1309 | "电源": "有", 1310 | "marker-symbol": "cafe", 1311 | "marker-color": "#50C240" 1312 | }, 1313 | "geometry": { 1314 | "type": "Point", 1315 | "coordinates": [ 1316 | 121.453, 1317 | 31.212 1318 | ] 1319 | } 1320 | } 1321 | ] 1322 | } 1323 | -------------------------------------------------------------------------------- /beijing.geojson: -------------------------------------------------------------------------------- 1 | { 2 | "type": "FeatureCollection", 3 | "features": [ 4 | { 5 | "type": "Feature", 6 | "properties": { 7 | "名称": "奇遇花园", 8 | "下载速度": "22 Mbps", 9 | "Speedtest 链接": "http://www.speedtest.net/my-result/4629928302", 10 | "参考价格": "30-40 元", 11 | "评论 (@xhacker)": "有电源,网速快,环境不错,咖啡也不错。", 12 | "marker-color": "#50C240", 13 | "marker-symbol": "cafe" 14 | }, 15 | "geometry": { 16 | "type": "Point", 17 | "coordinates": [ 18 | 116.342, 19 | 39.941 20 | ] 21 | } 22 | }, 23 | { 24 | "type": "Feature", 25 | "properties": { 26 | "名称": "May Café", 27 | "营业状态": "停业", 28 | "下载速度": "41 Mbps", 29 | "Speedtest 链接": "http://www.speedtest.net/my-result/4850194225", 30 | "参考价格": "25-40 元", 31 | "评论 (@mckelvin)": "有电源,网速快,环境不错,人不多。", 32 | "marker-color": "#BEBEBE", 33 | "marker-symbol": "cafe" 34 | }, 35 | "geometry": { 36 | "type": "Point", 37 | "coordinates": [ 38 | 116.328977, 39 | 40.03278 40 | ] 41 | } 42 | }, 43 | { 44 | "type": "Feature", 45 | "properties": { 46 | "名称": "Esquires Café", 47 | "下载速度": "3.18 Mbps", 48 | "Speedtest 链接": "http://www.speedtest.net/my-result/4891431411", 49 | "参考价格": "30 元", 50 | "评论 (@crispgm)": "有电源,网速快,可看王府井街景。", 51 | "marker-color": "#C24740", 52 | "marker-symbol": "cafe" 53 | }, 54 | "geometry": { 55 | "type": "Point", 56 | "coordinates": [ 57 | 116.418826, 58 | 39.915424 59 | ] 60 | } 61 | }, 62 | { 63 | "type": "Feature", 64 | "properties": { 65 | "名称": "Starbucks 星巴克 (四元桥店)", 66 | "下载速度": "13 Mbps", 67 | "Speedtest 链接": "http://www.speedtest.net/my-result/5106521098", 68 | "参考价格": "30 元", 69 | "评论 (@tianyuf)": "有电源,网速快,服务好。", 70 | "marker-color": "#50C240", 71 | "marker-symbol": "cafe" 72 | }, 73 | "geometry": { 74 | "type": "Point", 75 | "coordinates": [ 76 | 116.4509423, 77 | 39.978085 78 | ] 79 | } 80 | }, 81 | { 82 | "type": "Feature", 83 | "properties": { 84 | "名称": "雕刻时光 Sculpting In Time", 85 | "下载速度": "3.03 Mbps", 86 | "参考价格": "40 元", 87 | "Speedtest 链接": "http://www.speedtest.net/my-result/5115403108", 88 | "评论 (@tianyuf)": "环境好,服务好。", 89 | "marker-color": "#C24740", 90 | "marker-symbol": "cafe" 91 | }, 92 | "geometry": { 93 | "type": "Point", 94 | "coordinates": [ 95 | 116.472347, 96 | 39.997405 97 | ] 98 | } 99 | }, 100 | { 101 | "type": "Feature", 102 | "properties": { 103 | "名称": "Meet Café", 104 | "下载速度": "28.91 Mbps", 105 | "参考价格": "30 元", 106 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1674659148", 107 | "评论 (@crispgm)": "环境好,手机测网速快,Brunch 好吃。", 108 | "marker-color": "#50C240", 109 | "marker-symbol": "cafe" 110 | }, 111 | "geometry": { 112 | "type": "Point", 113 | "coordinates": [ 114 | 116.454031, 115 | 39.897631 116 | ] 117 | } 118 | }, 119 | { 120 | "type": "Feature", 121 | "properties": { 122 | "名称": "Gloria Jean's Coffees(通盈三里屯店)", 123 | "营业状态": "停业", 124 | "下载速度": "22.49 Mbps", 125 | "参考价格": "34 元", 126 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1711955836", 127 | "评论 (@crispgm)": "电源充足,人不多,手机测网速快。", 128 | "marker-color": "#BEBEBE", 129 | "marker-symbol": "cafe" 130 | }, 131 | "geometry": { 132 | "type": "Point", 133 | "coordinates": [ 134 | 116.44902, 135 | 39.930947 136 | ] 137 | } 138 | }, 139 | { 140 | "type": "Feature", 141 | "properties": { 142 | "名称": "漫咖啡 MAAN COFFEE", 143 | "下载速度": "3.51 Mbps", 144 | "参考价格": "30 元", 145 | "Speedtest 链接": "http://www.speedtest.net/my-result/5539012756", 146 | "评论 (@beta)": "电源充足,环境不错,人不多。", 147 | "marker-color": "#C24740", 148 | "marker-symbol": "cafe" 149 | }, 150 | "geometry": { 151 | "type": "Point", 152 | "coordinates": [ 153 | 116.351184, 154 | 39.962148 155 | ] 156 | } 157 | }, 158 | { 159 | "type": "Feature", 160 | "properties": { 161 | "名称": "极客咖啡", 162 | "下载速度": "9.40 Mbps", 163 | "大杯拿铁": "35 元", 164 | "Speedtest 链接": "http://www.speedtest.net/my-result/5598700538", 165 | "评论 (@xhacker)": "拿铁一般,环境一般,人少,网速快,有电源。", 166 | "marker-color": "#F3AE1A", 167 | "marker-symbol": "cafe" 168 | }, 169 | "geometry": { 170 | "type": "Point", 171 | "coordinates": [ 172 | 116.30051, 173 | 39.981467 174 | ] 175 | } 176 | }, 177 | { 178 | "type": "Feature", 179 | "properties": { 180 | "名称": "么么咖啡(紫竹店)", 181 | "下载速度": "2.13 Mbps", 182 | "大杯焦糖拿铁": "35 元", 183 | "Speedtest 链接": "http://www.speedtest.net/my-result/5599038063", 184 | "评论 (@xhacker)": "咖啡不错,环境不错,网速一般,有电源。", 185 | "marker-color": "#C24740", 186 | "marker-symbol": "cafe" 187 | }, 188 | "geometry": { 189 | "type": "Point", 190 | "coordinates": [ 191 | 116.299232, 192 | 39.942686 193 | ] 194 | } 195 | }, 196 | { 197 | "type": "Feature", 198 | "properties": { 199 | "名称": "Starbucks 星巴克(丰联店)", 200 | "下载速度": "3.47 Mbps", 201 | "大杯卡布奇诺": "31 元", 202 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1764988610", 203 | "评论 (@crispgm)": "场地大,光线好,网速一般,有少量电源。", 204 | "marker-color": "#C24740", 205 | "marker-symbol": "cafe" 206 | }, 207 | "geometry": { 208 | "type": "Point", 209 | "coordinates": [ 210 | 116.433, 211 | 39.9222 212 | ] 213 | } 214 | }, 215 | { 216 | "type": "Feature", 217 | "properties": { 218 | "名称": "Costa Coffee(丰联广场店)", 219 | "下载速度": "4.34 Mbps", 220 | "大杯卡布奇诺": "31 元", 221 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1766332176", 222 | "评论 (@crispgm)": "环境好,网速一般,有电源。", 223 | "marker-color": "#F3AE1A", 224 | "marker-symbol": "cafe" 225 | }, 226 | "geometry": { 227 | "type": "Point", 228 | "coordinates": [ 229 | 116.4328, 230 | 39.9221 231 | ] 232 | } 233 | }, 234 | { 235 | "type": "Feature", 236 | "properties": { 237 | "名称": "星巴克(贵友店)", 238 | "营业状态": "停业", 239 | "下载速度": "5.01 Mbps", 240 | "Speedtest 链接": "http://www.speedtest.net/my-result/5608827828", 241 | "评论 (@xhacker)": "有少量电源。Wi-Fi 似乎限速 5 M。", 242 | "marker-color": "#BEBEBE", 243 | "marker-symbol": "cafe" 244 | }, 245 | "geometry": { 246 | "type": "Point", 247 | "coordinates": [ 248 | 116.44545, 249 | 39.9076 250 | ] 251 | } 252 | }, 253 | { 254 | "type": "Feature", 255 | "properties": { 256 | "名称": "Costa Coffee(颐堤港店)", 257 | "营业状态": "停业", 258 | "下载速度": "1.41 Mbps", 259 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1768641381", 260 | "中杯拿铁": "31 元", 261 | "评论 (@xhacker)": "网速很慢,地方挺大的,有少量电源。", 262 | "marker-color": "#BEBEBE", 263 | "marker-symbol": "cafe" 264 | }, 265 | "geometry": { 266 | "type": "Point", 267 | "coordinates": [ 268 | 116.485261, 269 | 39.967948 270 | ] 271 | } 272 | }, 273 | { 274 | "type": "Feature", 275 | "properties": { 276 | "名称": "J Coffee(SOHO 尚都店)", 277 | "下载速度": "30.68 Mbps", 278 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1769675242", 279 | "中杯拿铁": "35 元", 280 | "评论 (@imty42)": "日式风格矮桌椅,挺安静的。大叔老板拉花不错。有电源。", 281 | "marker-color": "#50C240", 282 | "marker-symbol": "cafe" 283 | }, 284 | "geometry": { 285 | "type": "Point", 286 | "coordinates": [ 287 | 116.448, 288 | 39.9178 289 | ] 290 | } 291 | }, 292 | { 293 | "type": "Feature", 294 | "properties": { 295 | "名称": "Carlly Cafe 车里咖啡", 296 | "下载速度": "20.88 Mbps", 297 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1772238471", 298 | "热拿铁": "32 元", 299 | "评论 (@xhacker)": "很安静、很舒服,咖啡好喝。网速不错,有少量电源。晚上还有人弹琴。🎸", 300 | "marker-color": "#50C240", 301 | "marker-symbol": "cafe" 302 | }, 303 | "geometry": { 304 | "type": "Point", 305 | "coordinates": [ 306 | 116.252428, 307 | 39.906934 308 | ] 309 | } 310 | }, 311 | { 312 | "type": "Feature", 313 | "properties": { 314 | "名称": "Coffee Holic(朝外 SOHO 店)", 315 | "下载速度": "4.40 Mbps", 316 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1770959453", 317 | "冰滴": "45 元", 318 | "评论 (@imty42)": "网速不快,咖啡有特点,好喝。老板年轻人,乐于分享咖啡知识。有电源。", 319 | "marker-color": "#F3AE1A", 320 | "marker-symbol": "cafe" 321 | }, 322 | "geometry": { 323 | "type": "Point", 324 | "coordinates": [ 325 | 116.449, 326 | 39.9187 327 | ] 328 | } 329 | }, 330 | { 331 | "type": "Feature", 332 | "properties": { 333 | "名称": "咖啡陪你(王府井店)", 334 | "下载速度": "4.63 Mbps", 335 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1773643866", 336 | "拿铁": "30 元", 337 | "评论 (@xhacker)": "有一点喧闹,靠窗的位子能看到王府井街景。拿铁不错。网速凑合,没看到电源。", 338 | "marker-color": "#F3AE1A", 339 | "marker-symbol": "cafe" 340 | }, 341 | "geometry": { 342 | "type": "Point", 343 | "coordinates": [ 344 | 116.404674, 345 | 39.914507 346 | ] 347 | } 348 | }, 349 | { 350 | "type": "Feature", 351 | "properties": { 352 | "名称": "星巴克(北京新东安店)", 353 | "下载速度": "4.99 Mbps", 354 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1773871904", 355 | "评论 (@xhacker)": "有一点喧闹,在 APM 地下一层。网速凑合,有少量电源。", 356 | "marker-color": "#F3AE1A", 357 | "marker-symbol": "cafe" 358 | }, 359 | "geometry": { 360 | "type": "Point", 361 | "coordinates": [ 362 | 116.405704, 363 | 39.913773 364 | ] 365 | } 366 | }, 367 | { 368 | "type": "Feature", 369 | "properties": { 370 | "名称": "星巴克(龙旗广场店)", 371 | "下载速度": "12.25 Mbps", 372 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1774642514", 373 | "评论 (@imty42)": "有一点喧闹,可能是因为接近中午的缘故。大桌和沙发桌有电源。", 374 | "marker-color": "#50C240", 375 | "marker-symbol": "cafe" 376 | }, 377 | "geometry": { 378 | "type": "Point", 379 | "coordinates": [ 380 | 116.341, 381 | 40.0649 382 | ] 383 | } 384 | }, 385 | { 386 | "type": "Feature", 387 | "properties": { 388 | "名称": "星巴克(北京西四环南路咖啡店)", 389 | "下载速度": "8.54 Mbps", 390 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1774834286", 391 | "评论 (@xhacker)": "人不太多,靠边的位置有电源。", 392 | "marker-color": "#F3AE1A", 393 | "marker-symbol": "cafe" 394 | }, 395 | "geometry": { 396 | "type": "Point", 397 | "coordinates": [ 398 | 116.279823, 399 | 39.836602 400 | ] 401 | } 402 | }, 403 | { 404 | "type": "Feature", 405 | "properties": { 406 | "名称": "漫咖啡(悠唐店)", 407 | "下载速度": "1.55 Mbps", 408 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1774857512", 409 | "评论 (@crispgm)": "人比较多,但环境好,电源充足。", 410 | "marker-color": "#C24740", 411 | "marker-symbol": "cafe" 412 | }, 413 | "geometry": { 414 | "type": "Point", 415 | "coordinates": [ 416 | 116.433, 417 | 39.9201 418 | ] 419 | } 420 | }, 421 | { 422 | "type": "Feature", 423 | "properties": { 424 | "名称": "星巴克(嘉里店 BJ Kerry Center)", 425 | "下载速度": "5.95 Mbps", 426 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1777083259", 427 | "评论 (@imty42)": "有两层,二层可以点手冲,人多网慢小圆桌有沿不适合放电脑,木质大圆桌还不错,一楼有电源。", 428 | "marker-color": "#F3AE1A", 429 | "marker-symbol": "cafe" 430 | }, 431 | "geometry": { 432 | "type": "Point", 433 | "coordinates": [ 434 | 116.454, 435 | 39.9121 436 | ] 437 | } 438 | }, 439 | { 440 | "type": "Feature", 441 | "properties": { 442 | "名称": "星巴克(丰北路店)", 443 | "下载速度": "19.87 Mbps", 444 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1778287600", 445 | "评论 (@xhacker)": "地方不大,人也不太多。有少量电源。", 446 | "marker-color": "#50C240", 447 | "marker-symbol": "cafe" 448 | }, 449 | "geometry": { 450 | "type": "Point", 451 | "coordinates": [ 452 | 116.287783, 453 | 39.865187 454 | ] 455 | } 456 | }, 457 | { 458 | "type": "Feature", 459 | "properties": { 460 | "名称": "迪欧咖啡(石景山店)", 461 | "下载速度": "27.44 Mbps", 462 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1778571350", 463 | "评论 (@csvenja)": "地方挺大,人不多,有电源。", 464 | "菊花水果茶": "58 元/壶", 465 | "marker-color": "#50C240", 466 | "marker-symbol": "cafe" 467 | }, 468 | "geometry": { 469 | "type": "Point", 470 | "coordinates": [ 471 | 116.243032, 472 | 39.896685 473 | ] 474 | } 475 | }, 476 | { 477 | "type": "Feature", 478 | "properties": { 479 | "名称": "Gloria Jean's Coffees(Naga上院店)", 480 | "下载速度": "9.06 Mbps", 481 | "参考价格": "34 元", 482 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1779843014", 483 | "评论 (@crispgm)": "场地大,人不多,光线好,网速较快。", 484 | "marker-color": "#F3AE1A", 485 | "marker-symbol": "cafe" 486 | }, 487 | "geometry": { 488 | "type": "Point", 489 | "coordinates": [ 490 | 116.422, 491 | 39.9399 492 | ] 493 | } 494 | }, 495 | { 496 | "type": "Feature", 497 | "properties": { 498 | "名称": "星巴克(北京南站第一咖啡店)", 499 | "下载速度": "3.74 Mbps", 500 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1779876236", 501 | "评论 (@xhacker)": "在南站里,二层人不多。有少量电源。", 502 | "marker-color": "#C24740", 503 | "marker-symbol": "cafe" 504 | }, 505 | "geometry": { 506 | "type": "Point", 507 | "coordinates": [ 508 | 116.371979, 509 | 39.862958 510 | ] 511 | } 512 | }, 513 | { 514 | "type": "Feature", 515 | "properties": { 516 | "名称": "星巴克(三里屯店)", 517 | "下载速度": "2.23 Mbps", 518 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1781079455", 519 | "评论 (@xhacker)": "有两层,有少量电源。", 520 | "marker-color": "#C24740", 521 | "marker-symbol": "cafe" 522 | }, 523 | "geometry": { 524 | "type": "Point", 525 | "coordinates": [ 526 | 116.448, 527 | 39.9332 528 | ] 529 | } 530 | }, 531 | { 532 | "type": "Feature", 533 | "properties": { 534 | "名称": "香咖啡", 535 | "下载速度": "8.86 Mbps", 536 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1781257065", 537 | "评论 (@xhacker)": "环境很好,很幽静,咖啡不错。网速实际感觉较慢,有电源。", 538 | "卡布奇诺": "38 元", 539 | "marker-color": "#F3AE1A", 540 | "marker-symbol": "cafe" 541 | }, 542 | "geometry": { 543 | "type": "Point", 544 | "coordinates": [ 545 | 116.456, 546 | 39.9323 547 | ] 548 | } 549 | }, 550 | { 551 | "type": "Feature", 552 | "properties": { 553 | "名称": "Costa Coffee(京汇店)", 554 | "下载速度": "5.62 Mbps", 555 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1782497468", 556 | "评论 (@crispgm)": "周末很清静。有电源。", 557 | "评论(@xhacker)": "Wi-Fi 信號奇差,基本連不上。", 558 | "厕所": "寫字樓內有。", 559 | "marker-color": "#F3AE1A", 560 | "marker-symbol": "cafe" 561 | }, 562 | "geometry": { 563 | "type": "Point", 564 | "coordinates": [ 565 | 116.456899, 566 | 39.905416 567 | ] 568 | } 569 | }, 570 | { 571 | "type": "Feature", 572 | "properties": { 573 | "名称": "星巴克(北京大成路店)", 574 | "下载速度": "8.86 Mbps", 575 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1790507938", 576 | "评论 (@xhacker)": "地下地方比较大,靠墙有一些电源。", 577 | "marker-color": "#F3AE1A", 578 | "marker-symbol": "cafe" 579 | }, 580 | "geometry": { 581 | "type": "Point", 582 | "coordinates": [ 583 | 116.259, 584 | 39.8879 585 | ] 586 | } 587 | }, 588 | { 589 | "type": "Feature", 590 | "properties": { 591 | "名称": "星巴克(北京羊坊路咖啡店)", 592 | "下载速度": "0.85 Mbps", 593 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1795487239", 594 | "评论 (@xhacker)": "网速感人(贬义的)。", 595 | "marker-color": "#C24740", 596 | "marker-symbol": "cafe" 597 | }, 598 | "geometry": { 599 | "type": "Point", 600 | "coordinates": [ 601 | 116.315, 602 | 39.8979 603 | ] 604 | } 605 | }, 606 | { 607 | "type": "Feature", 608 | "properties": { 609 | "名称": "Costa Coffee(金隅万科店)", 610 | "下载速度": "11.12 Mbps", 611 | "Speedtest 链接": "http://www.speedtest.net/my-result/5682421414", 612 | "评论 (@cscmaker)": "厅内右侧尽头有一个黑色皮沙发,非常舒服,店内插座较少。", 613 | "marker-color": "#50C240", 614 | "marker-symbol": "cafe" 615 | }, 616 | "geometry": { 617 | "type": "Point", 618 | "coordinates": [ 619 | 116.2402214945, 620 | 40.2124291871 621 | ] 622 | } 623 | }, 624 | { 625 | "type": "Feature", 626 | "properties": { 627 | "名称": "Coffee Craft (CC咖啡馆)", 628 | "下载速度": "7.10 Mbps", 629 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1828821698", 630 | "参考价格": "卡布奇诺:30 元,手冲咖啡:40 元", 631 | "评论 (@crispgm)": "空间很大,但位置不多,风格现代艺术感。手冲咖啡味道不错,插座不多但有插线板。", 632 | "marker-color": "#F3AE1A", 633 | "marker-symbol": "cafe" 634 | }, 635 | "geometry": { 636 | "type": "Point", 637 | "coordinates": [ 638 | 116.343, 639 | 39.9432 640 | ] 641 | } 642 | }, 643 | { 644 | "type": "Feature", 645 | "properties": { 646 | "名称": "Costa Coffee(IFC 大厦店)", 647 | "营业状态": "停业", 648 | "下载速度": "0.46 Mbps", 649 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1831357023", 650 | "参考价格(大杯卡布奇诺)": "37 元", 651 | "评论(@xhacker)": "环境不错,网速慢。", 652 | "marker-color": "#BEBEBE", 653 | "marker-symbol": "cafe" 654 | }, 655 | "geometry": { 656 | "type": "Point", 657 | "coordinates": [ 658 | 116.447, 659 | 39.9064 660 | ] 661 | } 662 | }, 663 | { 664 | "type": "Feature", 665 | "properties": { 666 | "名称": "Costa Coffee(中环世贸店)", 667 | "下载速度": "3.90 Mbps", 668 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1861251511", 669 | "评论(@xhacker)": "中环世贸中心D座1层。地方不大,有少量电源。网速由 ZHSM-D 测出,Costa 自己的 Wi-Fi 非常慢。", 670 | "厕所": "店内没有,可以用大楼内的厕所", 671 | "marker-color": "#C24740", 672 | "marker-symbol": "cafe" 673 | }, 674 | "geometry": { 675 | "type": "Point", 676 | "coordinates": [ 677 | 116.451, 678 | 39.9056 679 | ] 680 | } 681 | }, 682 | { 683 | "type": "Feature", 684 | "properties": { 685 | "名称": "星巴克(颐堤港中心咖啡店)", 686 | "下载速度": "5.06 Mbps", 687 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1876256024", 688 | "评论(@xhacker)": "有少量电源。", 689 | "厕所": "店内没有,可用商场内厕所。", 690 | "marker-color": "#F3AE1A", 691 | "marker-symbol": "cafe" 692 | }, 693 | "geometry": { 694 | "type": "Point", 695 | "coordinates": [ 696 | 116.486, 697 | 39.9694 698 | ] 699 | } 700 | }, 701 | { 702 | "type": "Feature", 703 | "properties": { 704 | "名称": "Costa Coffee(英特宜家店)", 705 | "下载速度": "13.32 Mbps", 706 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1877225008", 707 | "评论(@xhacker)": "在荟萃一层,店挺大的,人不太多,边上有少量电源。", 708 | "厕所": "店内没有,可用商场内厕所。", 709 | "marker-color": "#50C240", 710 | "marker-symbol": "cafe" 711 | }, 712 | "geometry": { 713 | "type": "Point", 714 | "coordinates": [ 715 | 116.322, 716 | 39.7886 717 | ] 718 | } 719 | }, 720 | { 721 | "type": "Feature", 722 | "properties": { 723 | "名称": "Costa Coffee(首地大峡谷店)", 724 | "下载速度": "2.56 Mbps", 725 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1878448433", 726 | "评论(@xhacker)": "首地大峡谷一层 F1-05,店挺大的,人不太多,边上有少量电源。", 727 | "厕所": "店内没有,可用商场内厕所。", 728 | "停车": "6元/小时,第一小时免费", 729 | "marker-color": "#C24740", 730 | "marker-symbol": "cafe" 731 | }, 732 | "geometry": { 733 | "type": "Point", 734 | "coordinates": [ 735 | 116.361, 736 | 39.8534 737 | ] 738 | } 739 | }, 740 | { 741 | "type": "Feature", 742 | "properties": { 743 | "名称": "星巴克(英蓝国际店)", 744 | "下载速度": "0.77 Mbps", 745 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1879679355", 746 | "评论 (@xhacker)": "地方大,环境不错,有少量电源,可惜网速渣。", 747 | "marker-color": "#C24740", 748 | "marker-symbol": "cafe" 749 | }, 750 | "geometry": { 751 | "type": "Point", 752 | "coordinates": [ 753 | 116.352, 754 | 39.9191 755 | ] 756 | } 757 | }, 758 | { 759 | "type": "Feature", 760 | "properties": { 761 | "名称": "雕刻时光(腾讯店)", 762 | "下载速度": "50.67 Mbps", 763 | "Speedtest 链接": "http://beta.speedtest.net/result/5847282428", 764 | "评论 (@xohozu)": "环境不错,网速挺好,电源量还好。因在腾讯大楼里,出入不是方便。", 765 | "marker-color": "#50C240", 766 | "marker-symbol": "cafe" 767 | }, 768 | "geometry": { 769 | "type": "Point", 770 | "coordinates": [ 771 | 116.330911, 772 | 39.975566 773 | ] 774 | } 775 | }, 776 | { 777 | "type": "Feature", 778 | "properties": { 779 | "名称": "星巴克(银座百货店)", 780 | "下载速度": "2.33 Mbps", 781 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1879845515", 782 | "评论 (@Cee)": "环境不错,座位多,非常温暖。", 783 | "marker-color": "#C24740", 784 | "marker-symbol": "cafe" 785 | }, 786 | "geometry": { 787 | "type": "Point", 788 | "coordinates": [ 789 | 116.43, 790 | 39.9386 791 | ] 792 | } 793 | }, 794 | { 795 | "type": "Feature", 796 | "properties": { 797 | "名称": "星巴克(欣宁大街店)", 798 | "下载速度": "8.38 Mbps", 799 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1884566518", 800 | "评论 (@xhacker)": "地方很开阔,有一些电源。", 801 | "厕所": "可用商场内厕所。", 802 | "marker-color": "#F3AE1A", 803 | "marker-symbol": "cafe" 804 | }, 805 | "geometry": { 806 | "type": "Point", 807 | "coordinates": [ 808 | 116.322, 809 | 39.7867 810 | ] 811 | } 812 | }, 813 | { 814 | "type": "Feature", 815 | "properties": { 816 | "名称": "星巴克(丰葆路店)", 817 | "下载速度": "12.11 Mbps", 818 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1892160727", 819 | "评论 (@xhacker)": "地方很开阔,有一些电源。在永旺梦乐城1层。", 820 | "厕所": "可用商场内厕所。", 821 | "marker-color": "#50C240", 822 | "marker-symbol": "cafe" 823 | }, 824 | "geometry": { 825 | "type": "Point", 826 | "coordinates": [ 827 | 116.286, 828 | 39.8166 829 | ] 830 | } 831 | }, 832 | { 833 | "type": "Feature", 834 | "properties": { 835 | "名称": "Costa Coffee(三里屯太古里店)", 836 | "下载速度": "5.42 Mbps", 837 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1908970377", 838 | "评论(@xhacker)": "三里屯 Village 地下一层。", 839 | "厕所": "店内没有,可用商场内厕所。", 840 | "marker-color": "#F3AE1A", 841 | "marker-symbol": "cafe" 842 | }, 843 | "geometry": { 844 | "type": "Point", 845 | "coordinates": [ 846 | 116.448, 847 | 39.9341 848 | ] 849 | } 850 | }, 851 | { 852 | "type": "Feature", 853 | "properties": { 854 | "名称": "星巴克(鲁谷远洋店)", 855 | "下载速度": "1.96 Mbps", 856 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1914242475", 857 | "评论 (@xhacker)": "地方挺大,有一些电源。", 858 | "marker-color": "#C24740", 859 | "marker-symbol": "cafe" 860 | }, 861 | "geometry": { 862 | "type": "Point", 863 | "coordinates": [ 864 | 116.246, 865 | 39.9024 866 | ] 867 | } 868 | }, 869 | { 870 | "type": "Feature", 871 | "properties": { 872 | "名称": "Costa Coffee(欧美汇店)", 873 | "下载速度": "0.71 Mbps", 874 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1924488152", 875 | "评论 (@xhacker)": "人不太多,网速奇慢", 876 | "厕所": "店内没有,商场楼上或楼下有。", 877 | "marker-color": "#C24740", 878 | "marker-symbol": "cafe" 879 | }, 880 | "geometry": { 881 | "type": "Point", 882 | "coordinates": [ 883 | 116.308, 884 | 39.9783 885 | ] 886 | } 887 | }, 888 | { 889 | "type": "Feature", 890 | "properties": { 891 | "名称": "咖啡陪你(天桥店)", 892 | "下载速度": "9.24 Mbps", 893 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1916773595", 894 | "评论 (@xhacker)": "在寒冷的晚上走进的咖啡店,吃的还不错。", 895 | "厕所": "店里没有,从侧门出去写字楼里有。", 896 | "marker-color": "#F3AE1A", 897 | "marker-symbol": "cafe" 898 | }, 899 | "geometry": { 900 | "type": "Point", 901 | "coordinates": [ 902 | 116.392, 903 | 39.8843 904 | ] 905 | } 906 | }, 907 | { 908 | "type": "Feature", 909 | "properties": { 910 | "名称": "MANGOSIX Coffee & Dessert", 911 | "下载速度": "21.73 Mbps", 912 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1924659288", 913 | "评论 (@crispgm)": "比较安静人少,可能天气不太好的缘故。网速很不错,有一些插线板。", 914 | "marker-color": "#50C240", 915 | "marker-symbol": "cafe" 916 | }, 917 | "geometry": { 918 | "type": "Point", 919 | "coordinates": [ 920 | 116.447, 921 | 39.9331 922 | ] 923 | } 924 | }, 925 | { 926 | "type": "Feature", 927 | "properties": { 928 | "名称": "福楼咖啡 Cafe Flo", 929 | "下载速度": "0.75 Mbps", 930 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1927287755", 931 | "评论 (@xhacker)": "侨福芳草地地下二层。环境不错。拿铁好喝。", 932 | "厕所": "店里没有,商场内有。", 933 | "marker-color": "#C24740", 934 | "marker-symbol": "cafe" 935 | }, 936 | "geometry": { 937 | "type": "Point", 938 | "coordinates": [ 939 | 116.443, 940 | 39.9181 941 | ] 942 | } 943 | }, 944 | { 945 | "type": "Feature", 946 | "properties": { 947 | "名称": "星巴克(北京 LG 大厦店)", 948 | "下载速度": "9.60 Mbps", 949 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1928516069", 950 | "评论 (@xhacker)": "中午人有点多,有少量电源。", 951 | "marker-color": "#F3AE1A", 952 | "marker-symbol": "cafe" 953 | }, 954 | "geometry": { 955 | "type": "Point", 956 | "coordinates": [ 957 | 116.443, 958 | 39.9063 959 | ] 960 | } 961 | }, 962 | { 963 | "type": "Feature", 964 | "properties": { 965 | "名称": "星巴克(北京 SK 大厦店)", 966 | "下载速度": "1.29 Mbps", 967 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1929928850", 968 | "评论 (@xhacker)": "在 SK 大厦二层,开放式布局,环境挺好的。", 969 | "marker-color": "#C24740", 970 | "marker-symbol": "cafe" 971 | }, 972 | "geometry": { 973 | "type": "Point", 974 | "coordinates": [ 975 | 116.451, 976 | 39.9063 977 | ] 978 | } 979 | }, 980 | { 981 | "type": "Feature", 982 | "properties": { 983 | "名称": "星巴克(北京西小口路店)", 984 | "下载速度": "8.08 Mbps", 985 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1934227111", 986 | "评论 (@xhacker)": "在东升科技园内。空间很大,人很少。有少量电源。", 987 | "marker-color": "#F3AE1A", 988 | "marker-symbol": "cafe" 989 | }, 990 | "geometry": { 991 | "type": "Point", 992 | "coordinates": [ 993 | 116.351, 994 | 40.0454 995 | ] 996 | } 997 | }, 998 | { 999 | "type": "Feature", 1000 | "properties": { 1001 | "名称": "星巴克(北京西单汉光百货商场店)", 1002 | "下载速度": "7.08 Mbps", 1003 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1934686138", 1004 | "评论 (@xhacker)": "人不太多,有电源。", 1005 | "marker-color": "#F3AE1A", 1006 | "marker-symbol": "cafe" 1007 | }, 1008 | "geometry": { 1009 | "type": "Point", 1010 | "coordinates": [ 1011 | 116.37, 1012 | 39.9076 1013 | ] 1014 | } 1015 | }, 1016 | { 1017 | "type": "Feature", 1018 | "properties": { 1019 | "名称": "星巴克(北京五棵松第二咖啡店)", 1020 | "下载速度": "8.74 Mbps", 1021 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1935870482", 1022 | "评论 (@xhacker)": "在卓展五层,耀莱成龙外面。人挺多的,有点乱。沙发座有电源。", 1023 | "厕所": "四层或电影院内有。", 1024 | "marker-color": "#F3AE1A", 1025 | "marker-symbol": "cafe" 1026 | }, 1027 | "geometry": { 1028 | "type": "Point", 1029 | "coordinates": [ 1030 | 116.272, 1031 | 39.9118 1032 | ] 1033 | } 1034 | }, 1035 | { 1036 | "type": "Feature", 1037 | "properties": { 1038 | "名称": "Costa Coffee(中海广场店)", 1039 | "下载速度": "7.19 Mbps", 1040 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1937074734", 1041 | "评论 (@xhacker)": "环境好,有少量电源。在中海广场写字楼一层。", 1042 | "marker-color": "#F3AE1A", 1043 | "marker-symbol": "cafe" 1044 | }, 1045 | "geometry": { 1046 | "type": "Point", 1047 | "coordinates": [ 1048 | 116.45, 1049 | 39.9092 1050 | ] 1051 | } 1052 | }, 1053 | { 1054 | "type": "Feature", 1055 | "properties": { 1056 | "名称": "太平洋咖啡(国贸店)", 1057 | "下载速度": "19.6 Mbps", 1058 | "Speedtest 链接": "http://www.speedtest.net/my-result/d/36204939", 1059 | "评论 (@xhacker)": "刚刚装修过,每个座位都有电源和 USB 口。人不太多。在国贸商城地下一层,从 Zone 1 & 2 到 Zone 3 的路上。用 China World 的 Wi-Fi 速度很快。", 1060 | "厕所": "可用商城内的,有点远。", 1061 | "marker-color": "#50C240", 1062 | "marker-symbol": "cafe" 1063 | }, 1064 | "geometry": { 1065 | "type": "Point", 1066 | "coordinates": [ 1067 | 116.452, 1068 | 39.9108 1069 | ] 1070 | } 1071 | }, 1072 | { 1073 | "type": "Feature", 1074 | "properties": { 1075 | "名称": "星巴克(北京万丰路咖啡店)", 1076 | "下载速度": "14.65 Mbps", 1077 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1953036805", 1078 | "评论 (@xhacker)": "在银座和谐广场一层东北入口处。地方小,座位少。大年初一人不太多,平时不知道。", 1079 | "厕所": "无,可用商场内的。", 1080 | "marker-color": "#50C240", 1081 | "marker-symbol": "cafe" 1082 | }, 1083 | "geometry": { 1084 | "type": "Point", 1085 | "coordinates": [ 1086 | 116.292, 1087 | 39.8814 1088 | ] 1089 | } 1090 | }, 1091 | { 1092 | "type": "Feature", 1093 | "properties": { 1094 | "名称": "星巴克(北京古北咖啡店)", 1095 | "下载速度": "2.60 Mbps", 1096 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1954465963", 1097 | "评论 (@xhacker)": "在古北水镇旅客服务中心内,比较乱,人多。", 1098 | "厕所": "有", 1099 | "marker-color": "#C24740", 1100 | "marker-symbol": "cafe" 1101 | }, 1102 | "geometry": { 1103 | "type": "Point", 1104 | "coordinates": [ 1105 | 117.262, 1106 | 40.6446 1107 | ] 1108 | } 1109 | }, 1110 | { 1111 | "type": "Feature", 1112 | "properties": { 1113 | "名称": "星巴克(北京建外现代城店)", 1114 | "下载速度": "2.29 Mbps", 1115 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1965150161", 1116 | "评论 (@xhacker)": "地方非常大,有三层,但人也非常多。", 1117 | "厕所": "有", 1118 | "marker-color": "#C24740", 1119 | "marker-symbol": "cafe" 1120 | }, 1121 | "geometry": { 1122 | "type": "Point", 1123 | "coordinates": [ 1124 | 116.454, 1125 | 39.9039 1126 | ] 1127 | } 1128 | }, 1129 | { 1130 | "type": "Feature", 1131 | "properties": { 1132 | "名称": "Cafe Flatwhite(华茂店)", 1133 | "下载速度": "4.91 Mbps", 1134 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1972987326", 1135 | "评论 (@crispgm)": "环境极好,插座充足。", 1136 | "marker-color": "#F3AE1A", 1137 | "marker-symbol": "cafe" 1138 | }, 1139 | "geometry": { 1140 | "type": "Point", 1141 | "coordinates": [ 1142 | 116.474, 1143 | 39.9074 1144 | ] 1145 | } 1146 | }, 1147 | { 1148 | "type": "Feature", 1149 | "properties": { 1150 | "名称": "星巴克(北京什刹海天荷坊店)", 1151 | "下载速度": "1.13 Mbps", 1152 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/1998158513", 1153 | "评论 (@xhacker)": "在荷花市场里,地方很小。", 1154 | "厕所": "出门左转 200 米。", 1155 | "marker-color": "#C24740", 1156 | "marker-symbol": "cafe" 1157 | }, 1158 | "geometry": { 1159 | "type": "Point", 1160 | "coordinates": [ 1161 | 116.386, 1162 | 39.9326 1163 | ] 1164 | } 1165 | }, 1166 | { 1167 | "type": "Feature", 1168 | "properties": { 1169 | "名称": "Illy(侨福芳草地)", 1170 | "下载速度": "1.23 Mbps", 1171 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2007239493", 1172 | "评论 (@xhacker)": "在芳草地二层,地方大、采光好、很开阔。", 1173 | "厕所": "可用芳草地内厕所。", 1174 | "marker-color": "#C24740", 1175 | "marker-symbol": "cafe" 1176 | }, 1177 | "geometry": { 1178 | "type": "Point", 1179 | "coordinates": [ 1180 | 116.442, 1181 | 39.9182 1182 | ] 1183 | } 1184 | }, 1185 | { 1186 | "type": "Feature", 1187 | "properties": { 1188 | "名称": "太平洋咖啡(银座和谐店)", 1189 | "下载速度": "2.27 Mbps", 1190 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2011340641", 1191 | "评论 (@xhacker)": "在银座和谐广场西南角。地方大、人不多。", 1192 | "厕所": "无,可用商场内的,比较远。", 1193 | "marker-color": "#C24740", 1194 | "marker-symbol": "cafe" 1195 | }, 1196 | "geometry": { 1197 | "type": "Point", 1198 | "coordinates": [ 1199 | 116.29, 1200 | 39.8808 1201 | ] 1202 | } 1203 | }, 1204 | { 1205 | "type": "Feature", 1206 | "properties": { 1207 | "名称": "星巴克(北京丽泽桥恒泰咖啡店)", 1208 | "下载速度": "8.27 Mbps", 1209 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2012460104", 1210 | "评论 (@xhacker)": "人挺多的,基本没地方。靠边有少量电源。", 1211 | "marker-color": "#F3AE1A", 1212 | "marker-symbol": "cafe" 1213 | }, 1214 | "geometry": { 1215 | "type": "Point", 1216 | "coordinates": [ 1217 | 116.3, 1218 | 39.8653 1219 | ] 1220 | } 1221 | }, 1222 | { 1223 | "type": "Feature", 1224 | "properties": { 1225 | "名称": "星巴克(永旺店)", 1226 | "下载速度": "7.25 Mbps", 1227 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2017642617", 1228 | "评论 (@xhacker)": "地方不算太大,但也有少量位子。靠边有少量电源。", 1229 | "marker-color": "#F3AE1A", 1230 | "marker-symbol": "cafe" 1231 | }, 1232 | "geometry": { 1233 | "type": "Point", 1234 | "coordinates": [ 1235 | 116.284, 1236 | 40.0948 1237 | ] 1238 | } 1239 | }, 1240 | { 1241 | "type": "Feature", 1242 | "properties": { 1243 | "名称": "古塘咖啡", 1244 | "下载速度": "4.92 Mbps", 1245 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2015155052", 1246 | "评论 (@beta)": "人少,比较安静,电源充足。", 1247 | "marker-color": "#F3AE1A", 1248 | "marker-symbol": "cafe" 1249 | }, 1250 | "geometry": { 1251 | "type": "Point", 1252 | "coordinates": [ 1253 | 116.355, 1254 | 39.9656 1255 | ] 1256 | } 1257 | }, 1258 | { 1259 | "type": "Feature", 1260 | "properties": { 1261 | "名称": "星巴克(望京店)", 1262 | "下载速度": "4.17 Mbps", 1263 | "大杯香草拿铁": "34 元", 1264 | "Speedtest 链接": "http://www.speedtest.net/my-result/a/2708941658", 1265 | "评论 (@beta)": "人很多,比较吵闹,网速一般,没找到电源。", 1266 | "marker-color": "#F3AE1A", 1267 | "marker-symbol": "cafe" 1268 | }, 1269 | "geometry": { 1270 | "type": "Point", 1271 | "coordinates": [ 1272 | 116.482, 1273 | 40.001 1274 | ] 1275 | } 1276 | }, 1277 | { 1278 | "type": "Feature", 1279 | "properties": { 1280 | "名称": "魔山", 1281 | "下载速度": "31.43 Mbps", 1282 | "Speedtest 链接": "http://www.speedtest.net/my-result/a/2711924188", 1283 | "评论 (@beta)": "店很小,很安静,网速很快,靠墙的桌子有插座,手冲咖啡和各种啤酒都很好喝,有 PS4 和 Nintendo Switch 可以玩。", 1284 | "marker-color": "#50C240", 1285 | "marker-symbol": "cafe" 1286 | }, 1287 | "geometry": { 1288 | "type": "Point", 1289 | "coordinates": [ 1290 | 116.35, 1291 | 39.962 1292 | ] 1293 | } 1294 | }, 1295 | { 1296 | "type": "Feature", 1297 | "properties": { 1298 | "名称": "Costa Coffee(大兴绿地店)", 1299 | "下载速度": "9.64 Mbps", 1300 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2019177863", 1301 | "评论 (@xhacker)": "环境好、靠边有少量电源。网速测出来不错,实际奇慢。", 1302 | "marker-color": "#F3AE1A", 1303 | "marker-symbol": "cafe" 1304 | }, 1305 | "geometry": { 1306 | "type": "Point", 1307 | "coordinates": [ 1308 | 116.328, 1309 | 39.7631 1310 | ] 1311 | } 1312 | }, 1313 | { 1314 | "type": "Feature", 1315 | "properties": { 1316 | "名称": "Costa Coffee(亦庄力宝华联店)", 1317 | "下载速度": "32.16 Mbps", 1318 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2025917325", 1319 | "评论 (@xhacker)": "地方很大、人很少,周五晚上八点半加上我只有三个人。靠边有少量电源。", 1320 | "marker-color": "#50C240", 1321 | "marker-symbol": "cafe" 1322 | }, 1323 | "geometry": { 1324 | "type": "Point", 1325 | "coordinates": [ 1326 | 116.495, 1327 | 39.8033 1328 | ] 1329 | } 1330 | }, 1331 | { 1332 | "type": "Feature", 1333 | "properties": { 1334 | "名称": "星巴克(丰科路万达广场店)", 1335 | "下载速度": "3.77 Mbps", 1336 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2027024693", 1337 | "评论 (@xhacker)": "地方非常大,电源也多。星巴克自己的网连不上,有一个 SSID 为 @ffan 的网可以用,网速也是用这个网测的。", 1338 | "marker-color": "#C24740", 1339 | "marker-symbol": "cafe" 1340 | }, 1341 | "geometry": { 1342 | "type": "Point", 1343 | "coordinates": [ 1344 | 116.291, 1345 | 39.8233 1346 | ] 1347 | } 1348 | }, 1349 | { 1350 | "type": "Feature", 1351 | "properties": { 1352 | "名称": "星巴克(北京赛特购物中心店)", 1353 | "下载速度": "10.02 Mbps", 1354 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2033544148", 1355 | "评论 (@xhacker)": "在赛特地下一层,工作日的上午人非常少,到中午饭点人多了起来。", 1356 | "厕所": "赛特内有,就在附近。", 1357 | "marker-color": "#50C240", 1358 | "marker-symbol": "cafe" 1359 | }, 1360 | "geometry": { 1361 | "type": "Point", 1362 | "coordinates": [ 1363 | 116.435, 1364 | 39.9065 1365 | ] 1366 | } 1367 | }, 1368 | { 1369 | "type": "Feature", 1370 | "properties": { 1371 | "名称": "星巴克(北京金汇路世界城店)", 1372 | "下载速度": "3.94 Mbps", 1373 | "Speedtest 链接": "http://www.speedtest.net/result/i/2041952697", 1374 | "评论 (@xhacker)": "地方挺大,人不多,靠边处有电源。", 1375 | "厕所": "出门右转旋转门下地下一层有,比较远。", 1376 | "marker-color": "#C24740", 1377 | "marker-symbol": "cafe" 1378 | }, 1379 | "geometry": { 1380 | "type": "Point", 1381 | "coordinates": [ 1382 | 116.446, 1383 | 39.9167 1384 | ] 1385 | } 1386 | }, 1387 | { 1388 | "type": "Feature", 1389 | "properties": { 1390 | "名称": "星巴克(北京南四环西路咖啡店)", 1391 | "营业时间": "周一至周五:7:30–19:00;周末:9:30–17:30", 1392 | "下载速度": "1.18 Mbps", 1393 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2054972545", 1394 | "评论 (@xhacker)": "环境舒适、很宽敞、人不多,靠边处有电源。晚上打烊很早。", 1395 | "marker-color": "#C24740", 1396 | "marker-symbol": "cafe" 1397 | }, 1398 | "geometry": { 1399 | "type": "Point", 1400 | "coordinates": [ 1401 | 116.281, 1402 | 39.8254 1403 | ] 1404 | } 1405 | }, 1406 | { 1407 | "type": "Feature", 1408 | "properties": { 1409 | "名称": "Costa Coffee(新奥国际店)", 1410 | "下载速度": "2.81 Mbps", 1411 | "Speedtest 链接": "http://www.speedtest.net/result/6254188263", 1412 | "评论 (@yozman)": "环境舒适、比较吵,靠边处有少量电源。", 1413 | "评论 (@xhacker)": "夏天空调开得很小,没法呆。", 1414 | "marker-color": "#C24740", 1415 | "marker-symbol": "cafe" 1416 | }, 1417 | "geometry": { 1418 | "type": "Point", 1419 | "coordinates": [ 1420 | 116.387, 1421 | 39.9988 1422 | ] 1423 | } 1424 | }, 1425 | { 1426 | "type": "Feature", 1427 | "properties": { 1428 | "名称": "静默咖啡 SilencecCoffee", 1429 | "下载速度": "15.31 Mbps", 1430 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2079078556", 1431 | "大众点评链接": "http://m.dianping.com/appshare/shop/91041725", 1432 | "评论 (@imty42)": "簋街附近,店小采光好,安静人亦少,铁制座椅桌子略低有插排,咖啡不贵,冷泡很赞", 1433 | "参考价格": "20-50 元", 1434 | "marker-color": "#50C240", 1435 | "marker-symbol": "cafe" 1436 | }, 1437 | "geometry": { 1438 | "type": "Point", 1439 | "coordinates": [ 1440 | 116.414, 1441 | 39.9405 1442 | ] 1443 | } 1444 | }, 1445 | { 1446 | "type": "Feature", 1447 | "properties": { 1448 | "名称": "星巴克(北京芳草地大厦咖啡店)", 1449 | "下载速度": "6.88 Mbps", 1450 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2059799118", 1451 | "评论 (@xhacker)": "在芳草地一层。坐的地方很少,大概只有四五个小桌子。没有电源。", 1452 | "marker-color": "#F3AE1A", 1453 | "marker-symbol": "cafe" 1454 | }, 1455 | "geometry": { 1456 | "type": "Point", 1457 | "coordinates": [ 1458 | 116.443, 1459 | 39.9187 1460 | ] 1461 | } 1462 | }, 1463 | { 1464 | "type": "Feature", 1465 | "properties": { 1466 | "名称": "星巴克(北京华贸店)", 1467 | "下载速度": "3.86 Mbps", 1468 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2159296786", 1469 | "评论 (@xhacker)": "空间大、环境好、人不多。靠边处有电源。在华贸二层。", 1470 | "厕所": "几米之外就有", 1471 | "marker-color": "#C24740", 1472 | "marker-symbol": "cafe" 1473 | }, 1474 | "geometry": { 1475 | "type": "Point", 1476 | "coordinates": [ 1477 | 116.475, 1478 | 39.9078 1479 | ] 1480 | } 1481 | }, 1482 | { 1483 | "type": "Feature", 1484 | "properties": { 1485 | "名称": "Costa Coffee(五棵松华熙 Live 店)", 1486 | "下载速度": "0.43 Mbps", 1487 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2172031985", 1488 | "评论 (@xhacker)": "空间大、环境不错。靠边处有少量电源。", 1489 | "marker-color": "#C24740", 1490 | "marker-symbol": "cafe" 1491 | }, 1492 | "geometry": { 1493 | "type": "Point", 1494 | "coordinates": [ 1495 | 116.272, 1496 | 39.908 1497 | ] 1498 | } 1499 | }, 1500 | { 1501 | "type": "Feature", 1502 | "properties": { 1503 | "名称": "Costa Coffee(世贸天阶二店)", 1504 | "下载速度": "5.45 Mbps", 1505 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2206262321", 1506 | "评论 (@xhacker)": "空间大、环境不错,室外也有有很多座位。靠边处有少量电源。", 1507 | "marker-color": "#F3AE1A", 1508 | "marker-symbol": "cafe" 1509 | }, 1510 | "geometry": { 1511 | "type": "Point", 1512 | "coordinates": [ 1513 | 116.446, 1514 | 39.9149 1515 | ] 1516 | } 1517 | }, 1518 | { 1519 | "type": "Feature", 1520 | "properties": { 1521 | "名称": "星巴克(北京宝钢大厦店)", 1522 | "下载速度": "3.91 Mbps", 1523 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/", 1524 | "评论 (@xhacker)": "地方比较小,在宝钢大厦一层。", 1525 | "marker-color": "#C24740", 1526 | "marker-symbol": "cafe" 1527 | }, 1528 | "geometry": { 1529 | "type": "Point", 1530 | "coordinates": [ 1531 | 116.44, 1532 | 39.9067 1533 | ] 1534 | } 1535 | }, 1536 | { 1537 | "type": "Feature", 1538 | "properties": { 1539 | "名称": "Costa Coffee(新中关购物中心)", 1540 | "下载速度": "1.83 Mbps", 1541 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/-2065387227", 1542 | "评论 (@xhacker)": "比新中关里的星巴克人少很多,地方也大。网速不行。似乎没有电源。", 1543 | "厕所": "购物中心内有,比较远。", 1544 | "marker-color": "#C24740", 1545 | "marker-symbol": "cafe" 1546 | }, 1547 | "geometry": { 1548 | "type": "Point", 1549 | "coordinates": [ 1550 | 116.308, 1551 | 39.9765 1552 | ] 1553 | } 1554 | }, 1555 | { 1556 | "type": "Feature", 1557 | "properties": { 1558 | "名称": "ZOO COFFEE", 1559 | "下载速度": "3.42 Mbps", 1560 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/-2065187741", 1561 | "评论 (@xhacker)": "人少、安静、地方大、咖啡不错。有一些插座。", 1562 | "厕所": "有", 1563 | "marker-color": "#C24740", 1564 | "marker-symbol": "cafe" 1565 | }, 1566 | "geometry": { 1567 | "type": "Point", 1568 | "coordinates": [ 1569 | 116.299, 1570 | 39.9862 1571 | ] 1572 | } 1573 | }, 1574 | { 1575 | "type": "Feature", 1576 | "properties": { 1577 | "名称": "Costa Coffee(公益西桥华联店)", 1578 | "下载速度": "4.02 Mbps", 1579 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2237745732", 1580 | "评论 (@xhacker)": "店面比较小,不过人也不太多。", 1581 | "厕所": "商场三层有,比较远。", 1582 | "marker-color": "#F3AE1A", 1583 | "marker-symbol": "cafe" 1584 | }, 1585 | "geometry": { 1586 | "type": "Point", 1587 | "coordinates": [ 1588 | 116.364, 1589 | 39.8327 1590 | ] 1591 | } 1592 | }, 1593 | { 1594 | "type": "Feature", 1595 | "properties": { 1596 | "名称": "Costa Coffee(阜成门店)", 1597 | "下载速度": "0.2 Mbps", 1598 | "评论 (@xhacker)": "地方挺大的,有点乱,Wi-Fi 基本没法用。", 1599 | "厕所": "商场内有,比较远。", 1600 | "marker-color": "#C24740", 1601 | "marker-symbol": "cafe" 1602 | }, 1603 | "geometry": { 1604 | "type": "Point", 1605 | "coordinates": [ 1606 | 116.348, 1607 | 39.9225 1608 | ] 1609 | } 1610 | }, 1611 | { 1612 | "type": "Feature", 1613 | "properties": { 1614 | "名称": "星巴克(世贸天阶B1店)", 1615 | "下载速度": "4.09 Mbps", 1616 | "评论 (@xhacker)": "这是一家新开的店,在世贸天阶南街地下一层,电影院旁边。人不多,环境不错,有一些电源。", 1617 | "厕所": "商场内有,不太远。", 1618 | "marker-color": "#F3AE1A", 1619 | "marker-symbol": "cafe" 1620 | }, 1621 | "geometry": { 1622 | "type": "Point", 1623 | "coordinates": [ 1624 | 116.447, 1625 | 39.915 1626 | ] 1627 | } 1628 | }, 1629 | { 1630 | "type": "Feature", 1631 | "properties": { 1632 | "名称": "漫咖啡 maanCoffee", 1633 | "下载速度": "2.44 Mbps", 1634 | "Speedtest 链接": "http://beta.speedtest.net/result/6303620182", 1635 | "评论 (@**)": "地儿挺大,环境不错,网速太慢!!!", 1636 | "参考价格": "30-50 元", 1637 | "marker-color": "#C24740", 1638 | "marker-symbol": "cafe" 1639 | }, 1640 | "geometry": { 1641 | "type": "Point", 1642 | "coordinates": [ 1643 | 116.508095, 1644 | 39.935795 1645 | ] 1646 | } 1647 | }, 1648 | { 1649 | "type": "Feature", 1650 | "properties": { 1651 | "名称": "TOSCA COFFEE", 1652 | "下载速度": "39.78 Mbps", 1653 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2296063147", 1654 | "评论 (@crispgm)": "藏在写字楼内,很有艺术气氛,网速惊人。除手冲外,价格正常。", 1655 | "参考价格": "30 元", 1656 | "marker-color": "#50C240", 1657 | "marker-symbol": "cafe" 1658 | }, 1659 | "geometry": { 1660 | "type": "Point", 1661 | "coordinates": [ 1662 | 116.466, 1663 | 39.933333 1664 | ] 1665 | } 1666 | }, 1667 | { 1668 | "type": "Feature", 1669 | "properties": { 1670 | "名称": "Costa Coffee(3.3大厦店)", 1671 | "下载速度": "1.97 Mbps", 1672 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2335774359", 1673 | "评论 (@crispgm)": "环境不错,空间较大。", 1674 | "厕所": "商场内二楼有,比较远,并且不是很好。", 1675 | "marker-color": "#C24740", 1676 | "marker-symbol": "cafe" 1677 | }, 1678 | "geometry": { 1679 | "type": "Point", 1680 | "coordinates": [ 1681 | 116.449, 1682 | 39.9357 1683 | ] 1684 | } 1685 | }, 1686 | { 1687 | "type": "Feature", 1688 | "properties": { 1689 | "名称": "星巴克(北京南四环西路第二店)", 1690 | "下载速度": "31.44 Mbps", 1691 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2368282243", 1692 | "评论 (@xhacker)": "在花乡奥莱村内。周日的晚上人很少。网速超快。", 1693 | "厕所": "里面没有,附近不知道。", 1694 | "marker-color": "#50C240", 1695 | "marker-symbol": "cafe" 1696 | }, 1697 | "geometry": { 1698 | "type": "Point", 1699 | "coordinates": [ 1700 | 116.316, 1701 | 39.8262 1702 | ] 1703 | } 1704 | }, 1705 | { 1706 | "type": "Feature", 1707 | "properties": { 1708 | "名称": "Voyage Coffee(北京坊店)", 1709 | "下载速度": "12.45 Mbps", 1710 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2387082887", 1711 | "评论 (@crispgm)": "店面超大,很多“留白”,座位没有那么多,但几乎都有插座。", 1712 | "marker-color": "#50C240", 1713 | "marker-symbol": "cafe" 1714 | }, 1715 | "geometry": { 1716 | "type": "Point", 1717 | "coordinates": [ 1718 | 116.39, 1719 | 39.8966 1720 | ] 1721 | } 1722 | }, 1723 | { 1724 | "type": "Feature", 1725 | "properties": { 1726 | "名称": "星巴克(北京宏福路咖啡店)", 1727 | "下载速度": "86.3 Mbps", 1728 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2429185003", 1729 | "评论 (@xhacker)": "店不太大,人也不太多。网速超快。", 1730 | "厕所": "商场内有。", 1731 | "marker-color": "#50C240", 1732 | "marker-symbol": "cafe" 1733 | }, 1734 | "geometry": { 1735 | "type": "Point", 1736 | "coordinates": [ 1737 | 116.334, 1738 | 39.79 1739 | ] 1740 | } 1741 | }, 1742 | { 1743 | "type": "Feature", 1744 | "properties": { 1745 | "名称": "UCoffee 悠咖啡(三里屯店)", 1746 | "下载速度": "72.7 Mbps", 1747 | "Speedtest 链接": "http://www.speedtest.net/result/6973275498", 1748 | "评论 (@philip-zhan)": "有电源,店面大", 1749 | "厕所": "有", 1750 | "marker-color": "#50C240", 1751 | "marker-symbol": "cafe" 1752 | }, 1753 | "geometry": { 1754 | "type": "Point", 1755 | "coordinates": [ 1756 | 116.444624, 1757 | 39.938279 1758 | ] 1759 | } 1760 | }, 1761 | { 1762 | "type": "Feature", 1763 | "properties": { 1764 | "名称": "星巴克(北京三里河东路店)", 1765 | "下载速度": "5.05 Mbps", 1766 | "Speedtest 链接": "http://www.speedtest.net/result/i/2465989240", 1767 | "评论 (@xhacker)": "地方不大,插座很多。", 1768 | "marker-color": "#F3AE1A", 1769 | "marker-symbol": "cafe" 1770 | }, 1771 | "geometry": { 1772 | "type": "Point", 1773 | "coordinates": [ 1774 | 116.338, 1775 | 39.906 1776 | ] 1777 | } 1778 | }, 1779 | { 1780 | "type": "Feature", 1781 | "properties": { 1782 | "名称": "星巴克(北京东三环南路店)", 1783 | "下载速度": "9.80 Mbps", 1784 | "Speedtest 链接": "http://www.speedtest.net/result/i/2529007752", 1785 | "评论 (@xhacker)": "人不太多、网速不错、有一些插座。在地铁双井站D口旁边。", 1786 | "marker-color": "#F3AE1A", 1787 | "marker-symbol": "cafe" 1788 | }, 1789 | "geometry": { 1790 | "type": "Point", 1791 | "coordinates": [ 1792 | 116.454, 1793 | 39.892 1794 | ] 1795 | } 1796 | }, 1797 | { 1798 | "type": "Feature", 1799 | "properties": { 1800 | "名称": "星巴克(北京富力广场购物中心店)", 1801 | "下载速度": "1.11 Mbps", 1802 | "Speedtest 链接": "http://www.speedtest.net/result/i/2529000289", 1803 | "评论 (@xhacker)": "在富力广场购物中心一层。人多、网速慢。", 1804 | "marker-color": "#C24740", 1805 | "marker-symbol": "cafe" 1806 | }, 1807 | "geometry": { 1808 | "type": "Point", 1809 | "coordinates": [ 1810 | 116.455, 1811 | 39.894 1812 | ] 1813 | } 1814 | }, 1815 | { 1816 | "type": "Feature", 1817 | "properties": { 1818 | "名称": "星巴克(北京成寿寺路咖啡店)", 1819 | "下载速度": "3.91 Mbps", 1820 | "Speedtest 链接": "http://www.speedtest.net/result/i/2527631238", 1821 | "评论 (@xhacker)": "在新业广场1层A129。人不太多、网速不太快。", 1822 | "marker-color": "#C24740", 1823 | "marker-symbol": "cafe" 1824 | }, 1825 | "geometry": { 1826 | "type": "Point", 1827 | "coordinates": [ 1828 | 116.44, 1829 | 39.856 1830 | ] 1831 | } 1832 | }, 1833 | { 1834 | "type": "Feature", 1835 | "properties": { 1836 | "名称": "饮冰室", 1837 | "下载速度": "51.7 Mbps", 1838 | "Speedtest 链接": "http://www.speedtest.net/result/i/2525722107", 1839 | "评论 (@crispgm)": "美术馆旁边,网速快,插座多。前提是别遇到过量网红。", 1840 | "厕所": "芳草地有豪华舒适的厕所。", 1841 | "marker-color": "#50C240", 1842 | "marker-symbol": "cafe" 1843 | }, 1844 | "geometry": { 1845 | "type": "Point", 1846 | "coordinates": [ 1847 | 116.443, 1848 | 39.918 1849 | ] 1850 | } 1851 | }, 1852 | { 1853 | "type": "Feature", 1854 | "properties": { 1855 | "名称": "言几又", 1856 | "下载速度": "4.07 Mbps", 1857 | "Speedtest 链接": "http://www.speedtest.net/result/i/2539464374", 1858 | "评论 (@xhacker)": "是一个书店+咖啡馆。拿铁好喝。地方大、人也不少。Wi-Fi 热点非常多,加之地方很大,测速可能不具代表性。地上有很多插座。", 1859 | "厕所": "里面似乎没有,商场内有。", 1860 | "marker-color": "#F3AE1A", 1861 | "marker-symbol": "cafe" 1862 | }, 1863 | "geometry": { 1864 | "type": "Point", 1865 | "coordinates": [ 1866 | 116.321, 1867 | 39.786 1868 | ] 1869 | } 1870 | }, 1871 | { 1872 | "type": "Feature", 1873 | "properties": { 1874 | "名称": "Seesaw Coffee (王府中环店)", 1875 | "下载速度": "16.97 Mbps", 1876 | "Speedtest 链接": "http://www.speedtest.net/result/i/2683924506", 1877 | "评论 (@crispgm)": "位于王府中环,整体人不算多但座位也不多,傍晚时空位十分充足。", 1878 | "评论 (@xhacker)": "网速很快,环境挺好的。", 1879 | "厕所": "商场内有,干净且位置充足。", 1880 | "marker-color": "#50C240", 1881 | "marker-symbol": "cafe" 1882 | }, 1883 | "geometry": { 1884 | "type": "Point", 1885 | "coordinates": [ 1886 | 116.404, 1887 | 39.911 1888 | ] 1889 | } 1890 | }, 1891 | { 1892 | "type": "Feature", 1893 | "properties": { 1894 | "名称": "星巴克(湖景东路店)", 1895 | "下载速度": "0.46 Mbps", 1896 | "Speedtest 链接": "http://www.speedtest.net/result/i/2728094223", 1897 | "评论 (@xhacker)": "地方挺大、(周末)人不少。网速慢。", 1898 | "marker-color": "#C24740", 1899 | "marker-symbol": "cafe" 1900 | }, 1901 | "geometry": { 1902 | "type": "Point", 1903 | "coordinates": [ 1904 | 116.388, 1905 | 39.998 1906 | ] 1907 | } 1908 | }, 1909 | { 1910 | "type": "Feature", 1911 | "properties": { 1912 | "名称": "星巴克(秀水街店)", 1913 | "下载速度": "2.28 Mbps", 1914 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2731336695", 1915 | "评论 (@xhacker)": "新开的一家店,坐的地方都在室外。在东大桥路西侧。", 1916 | "marker-color": "#C24740", 1917 | "marker-symbol": "cafe" 1918 | }, 1919 | "geometry": { 1920 | "type": "Point", 1921 | "coordinates": [ 1922 | 116.444, 1923 | 39.908 1924 | ] 1925 | } 1926 | }, 1927 | { 1928 | "type": "Feature", 1929 | "properties": { 1930 | "名称": "Coffee Cuore 初心咖啡馆", 1931 | "下载速度": "9.37 Mbps", 1932 | "Speedtest 链接": "http://www.speedtest.net/result/i/2748678230", 1933 | "评论 (@crispgm)": "网速满意,也有适合工作的桌子,但有些网红人太多了。", 1934 | "marker-color": "#F3AE1A", 1935 | "marker-symbol": "cafe" 1936 | }, 1937 | "geometry": { 1938 | "type": "Point", 1939 | "coordinates": [ 1940 | 116.46, 1941 | 39.946 1942 | ] 1943 | } 1944 | }, 1945 | { 1946 | "type": "Feature", 1947 | "properties": { 1948 | "名称": "星巴克(北京五棵松卓展店)", 1949 | "下载速度": "28.5 Mbps", 1950 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2875370620", 1951 | "评论 (@xhacker)": "在卓展一层。地方不太大。", 1952 | "厕所": "店里有。", 1953 | "marker-color": "#50C240", 1954 | "marker-symbol": "cafe" 1955 | }, 1956 | "geometry": { 1957 | "type": "Point", 1958 | "coordinates": [ 1959 | 116.272, 1960 | 39.912 1961 | ] 1962 | } 1963 | }, 1964 | { 1965 | "type": "Feature", 1966 | "properties": { 1967 | "名称": "Costa Coffee(西单华威店)", 1968 | "下载速度": "0.68 Mbps", 1969 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2913118437", 1970 | "评论 (@xhacker)": "地方不大,人也不太多。有少量电源。网速慢。", 1971 | "marker-color": "#C24740", 1972 | "marker-symbol": "cafe" 1973 | }, 1974 | "geometry": { 1975 | "type": "Point", 1976 | "coordinates": [ 1977 | 116.368, 1978 | 39.91 1979 | ] 1980 | } 1981 | }, 1982 | { 1983 | "type": "Feature", 1984 | "properties": { 1985 | "名称": "Costa Coffee(华联商厦店)", 1986 | "下载速度": "1.22 Mbps", 1987 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2925025134", 1988 | "评论 (@xhacker)": "大小中等,人不太多。有少量电源。网速慢。", 1989 | "marker-color": "#C24740", 1990 | "marker-symbol": "cafe" 1991 | }, 1992 | "geometry": { 1993 | "type": "Point", 1994 | "coordinates": [ 1995 | 116.306, 1996 | 40.027 1997 | ] 1998 | } 1999 | }, 2000 | { 2001 | "type": "Feature", 2002 | "properties": { 2003 | "名称": "太平洋咖啡(凯德MALL·大峡谷)", 2004 | "下载速度": "1.26 Mbps", 2005 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2939048674", 2006 | "评论 (@xhacker)": "在凯德MALL一层。空间开放、有点喧闹、人不太多。", 2007 | "厕所": "商城二层有。", 2008 | "停车": "6元/小时,第一小时免费", 2009 | "marker-color": "#C24740", 2010 | "marker-symbol": "cafe" 2011 | }, 2012 | "geometry": { 2013 | "type": "Point", 2014 | "coordinates": [ 2015 | 116.361, 2016 | 39.853 2017 | ] 2018 | } 2019 | }, 2020 | { 2021 | "type": "Feature", 2022 | "properties": { 2023 | "名称": "星巴克(北京朝外悠唐店)", 2024 | "下载速度": "1.60 Mbps", 2025 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2928814112", 2026 | "评论 (@xhacker)": "地方挺大、开阔、明亮,有两层,人不多。网速一般。", 2027 | "marker-color": "#C24740", 2028 | "marker-symbol": "cafe" 2029 | }, 2030 | "geometry": { 2031 | "type": "Point", 2032 | "coordinates": [ 2033 | 116.43398255109788, 2034 | 39.92076509416812 2035 | ] 2036 | } 2037 | }, 2038 | { 2039 | "type": "Feature", 2040 | "properties": { 2041 | "名称": "蜗牛小酒馆", 2042 | "下载速度": "75.8 Mbps", 2043 | "Speedtest 链接": "http://www.speedtest.net/my-result/i/2984079541", 2044 | "评论 (@xhacker)": "有电影有演出有咖啡的小酒馆。在大兴胡同内。网速惊人。", 2045 | "marker-color": "#50C240", 2046 | "marker-symbol": "cafe" 2047 | }, 2048 | "geometry": { 2049 | "type": "Point", 2050 | "coordinates": [ 2051 | 116.404, 2052 | 39.936 2053 | ] 2054 | } 2055 | }, 2056 | { 2057 | "type": "Feature", 2058 | "properties": { 2059 | "名称": "星巴克(北京威新国际大厦店)", 2060 | "下载速度": "39.51 Mbps", 2061 | "Speedtest 链接": "http://www.speedtest.net/zh-Hans/result/i/2996837101", 2062 | "评论 (@xhacker)": "地方挺大、人不太多、网速快。", 2063 | "marker-color": "#50C240", 2064 | "marker-symbol": "cafe" 2065 | }, 2066 | "geometry": { 2067 | "type": "Point", 2068 | "coordinates": [ 2069 | 116.326, 2070 | 39.992 2071 | ] 2072 | } 2073 | }, 2074 | { 2075 | "type": "Feature", 2076 | "properties": { 2077 | "名称": "车库咖啡", 2078 | "下载速度": "2.71 Mbps", 2079 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3044002805", 2080 | "评论 (@xhacker)": "里面气氛比较诡异,空气也不好。地方很大,人也不少。", 2081 | "marker-color": "#C24740", 2082 | "marker-symbol": "cafe" 2083 | }, 2084 | "geometry": { 2085 | "type": "Point", 2086 | "coordinates": [ 2087 | 116.301, 2088 | 39.983 2089 | ] 2090 | } 2091 | }, 2092 | { 2093 | "type": "Feature", 2094 | "properties": { 2095 | "名称": "星巴克(北京石榴中心店)", 2096 | "下载速度": "1.29 Mbps", 2097 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3067814198", 2098 | "评论 (@xhacker)": "这附近似乎比较萧条,所以人不怎么多。地方挺大,环境好,有电源。", 2099 | "停车": "5元/小时", 2100 | "marker-color": "#C24740", 2101 | "marker-symbol": "cafe" 2102 | }, 2103 | "geometry": { 2104 | "type": "Point", 2105 | "coordinates": [ 2106 | 116.416, 2107 | 39.84 2108 | ] 2109 | } 2110 | }, 2111 | { 2112 | "type": "Feature", 2113 | "properties": { 2114 | "名称": "古耳咖啡", 2115 | "下载速度": "19.13 Mbps", 2116 | "Speedtest 链接": "https://www.speedtest.net/result/i/3149401029", 2117 | "评论 (@crispgm)": "公寓中的开放小店,咖啡拉花很用心。生活气氛好,网速快但不商务。因为藏得深,也没有遇到很多打卡网红。", 2118 | "marker-color": "#50C240", 2119 | "marker-symbol": "cafe" 2120 | }, 2121 | "geometry": { 2122 | "type": "Point", 2123 | "coordinates": [ 2124 | 116.467, 2125 | 39.94 2126 | ] 2127 | } 2128 | }, 2129 | { 2130 | "type": "Feature", 2131 | "properties": { 2132 | "名称": "Seesaw Coffee (大悦城店)", 2133 | "下载速度": "3.90 Mbps", 2134 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3180626540", 2135 | "评论 (@xhacker)": "位于朝阳大悦城九层,有点难找,在三联书店的最最最里面。是一大片采光非常好的空间。没看到电源。Seesaw 自己的 Wi-Fi 连不上网,测速用的是大悦城 Wi-Fi。", 2136 | "marker-color": "#C24740", 2137 | "marker-symbol": "cafe" 2138 | }, 2139 | "geometry": { 2140 | "type": "Point", 2141 | "coordinates": [ 2142 | 116.512, 2143 | 39.924 2144 | ] 2145 | } 2146 | }, 2147 | { 2148 | "type": "Feature", 2149 | "properties": { 2150 | "名称": "星巴克(北京天畅园咖啡店)", 2151 | "下载速度": "4.56 Mbps", 2152 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3216148134", 2153 | "评论 (@xhacker)": "店面很小,人也比较少。似乎没有电源。", 2154 | "厕所": "店内没用,附近也没有,只能去对面的商场。", 2155 | "marker-color": "#F3AE1A", 2156 | "marker-symbol": "cafe" 2157 | }, 2158 | "geometry": { 2159 | "type": "Point", 2160 | "coordinates": [ 2161 | 116.41, 2162 | 40.031 2163 | ] 2164 | } 2165 | }, 2166 | { 2167 | "type": "Feature", 2168 | "properties": { 2169 | "名称": "Costa Coffee(汉威店)", 2170 | "营业时间": "周一至周五:7:30–20:00;周末不开", 2171 | "下载速度": "0.59 Mbps", 2172 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3229496953", 2173 | "评论(@xhacker)": "在汉威大厦东区1层。地方挺大的,人少。网速慢。靠边处有一些电源。", 2174 | "marker-color": "#C24740", 2175 | "marker-symbol": "cafe" 2176 | }, 2177 | "geometry": { 2178 | "type": "Point", 2179 | "coordinates": [ 2180 | 116.449, 2181 | 39.913 2182 | ] 2183 | } 2184 | }, 2185 | { 2186 | "type": "Feature", 2187 | "properties": { 2188 | "名称": "西西弗书店矢量咖啡(永旺梦乐城店)", 2189 | "下载速度": "19.5 Mbps", 2190 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3250306615", 2191 | "评论 (@xhacker)": "安静、环境好、人不多、靠边处有电源有电源。在永旺梦乐城1层。", 2192 | "厕所": "可用商场内厕所。", 2193 | "marker-color": "#50C240", 2194 | "marker-symbol": "cafe" 2195 | }, 2196 | "geometry": { 2197 | "type": "Point", 2198 | "coordinates": [ 2199 | 116.286, 2200 | 39.817 2201 | ] 2202 | } 2203 | }, 2204 | { 2205 | "type": "Feature", 2206 | "properties": { 2207 | "名称": "星巴克(北京大恒科技大厦店)", 2208 | "下载速度": "3.29 Mbps", 2209 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3272251157", 2210 | "评论 (@xhacker)": "地方很大。", 2211 | "厕所": "写字楼内有厕所,卫生条件一般。", 2212 | "marker-color": "#C24740", 2213 | "marker-symbol": "cafe" 2214 | }, 2215 | "geometry": { 2216 | "type": "Point", 2217 | "coordinates": [ 2218 | 116.3, 2219 | 39.981 2220 | ] 2221 | } 2222 | }, 2223 | { 2224 | "type": "Feature", 2225 | "properties": { 2226 | "名称": "星巴克(北京乐成中心店)", 2227 | "下载速度": "30.3 Mbps", 2228 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3282140743", 2229 | "评论 (@xhacker)": "地方不是很大,人也不是很多。", 2230 | "marker-color": "#50C240", 2231 | "marker-symbol": "cafe" 2232 | }, 2233 | "geometry": { 2234 | "type": "Point", 2235 | "coordinates": [ 2236 | 116.458, 2237 | 39.893 2238 | ] 2239 | } 2240 | }, 2241 | { 2242 | "type": "Feature", 2243 | "properties": { 2244 | "名称": "星巴克(北京槐房西路店)", 2245 | "下载速度": "6.21 Mbps", 2246 | "Speedtest 链接": "https://www.speedtest.net/result/i/3518708794", 2247 | "评论 (@xhacker)": "在万达广场一层,中等大小,人基本坐满。", 2248 | "停车": "2元/小时", 2249 | "marker-color": "#F3AE1A", 2250 | "marker-symbol": "cafe" 2251 | }, 2252 | "geometry": { 2253 | "type": "Point", 2254 | "coordinates": [ 2255 | 116.36, 2256 | 39.814 2257 | ] 2258 | } 2259 | }, 2260 | { 2261 | "type": "Feature", 2262 | "properties": { 2263 | "名称": "Costa Coffee(甘家口店)", 2264 | "下载速度": "0.85 Mbps", 2265 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3552052717", 2266 | "评论 (@xhacker)": "甘家口大厦目前正在装修,人比较少。沙发处有电源。", 2267 | "停车": "甘家口大厦:8元/小时", 2268 | "marker-color": "#C24740", 2269 | "marker-symbol": "cafe" 2270 | }, 2271 | "geometry": { 2272 | "type": "Point", 2273 | "coordinates": [ 2274 | 116.328, 2275 | 39.926 2276 | ] 2277 | } 2278 | }, 2279 | { 2280 | "type": "Feature", 2281 | "properties": { 2282 | "名称": "GREYBOX Coffee(金融街店)", 2283 | "下载速度": "2.37 Mbps", 2284 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3553701289", 2285 | "评论 (@xhacker)": "人不太多,网速慢。澳白味道一般。", 2286 | "厕所": "商场内有。", 2287 | "marker-color": "#C24740", 2288 | "marker-symbol": "cafe" 2289 | }, 2290 | "geometry": { 2291 | "type": "Point", 2292 | "coordinates": [ 2293 | 116.356, 2294 | 39.914 2295 | ] 2296 | } 2297 | }, 2298 | { 2299 | "type": "Feature", 2300 | "properties": { 2301 | "名称": "星巴克(世贸天阶1F店)", 2302 | "下载速度": "10.7 Mbps", 2303 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3840890981", 2304 | "评论 (@xhacker)": "店内有一些座位,外面也有一些座位。店内网速不错。", 2305 | "厕所": "商场内有。", 2306 | "marker-color": "#50C240", 2307 | "marker-symbol": "cafe" 2308 | }, 2309 | "geometry": { 2310 | "type": "Point", 2311 | "coordinates": [ 2312 | 116.445, 2313 | 39.915 2314 | ] 2315 | } 2316 | }, 2317 | { 2318 | "type": "Feature", 2319 | "properties": { 2320 | "名称": "西西弗书店矢量咖啡", 2321 | "下载速度": "5.18 Mbps", 2322 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3882463305", 2323 | "评论 (@xhacker)": "人少、清静、可以看书。", 2324 | "厕所": "商场内有。", 2325 | "marker-color": "#F3AE1A", 2326 | "marker-symbol": "cafe" 2327 | }, 2328 | "geometry": { 2329 | "type": "Point", 2330 | "coordinates": [ 2331 | 116.454, 2332 | 39.911 2333 | ] 2334 | } 2335 | }, 2336 | { 2337 | "type": "Feature", 2338 | "properties": { 2339 | "名称": "星巴克(北京杏石口咖啡店)", 2340 | "下载速度": "81.1 Mbps", 2341 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/3998515045", 2342 | "评论 (@xhacker)": "店比较大。环境好。网速快。有少量电源。", 2343 | "厕所": "店内有。疫情期间没有开。", 2344 | "marker-color": "#50C240", 2345 | "marker-symbol": "cafe" 2346 | }, 2347 | "geometry": { 2348 | "type": "Point", 2349 | "coordinates": [ 2350 | 116.224, 2351 | 39.953 2352 | ] 2353 | } 2354 | }, 2355 | { 2356 | "type": "Feature", 2357 | "properties": { 2358 | "名称": "% ARABICA", 2359 | "下载速度": "9.82 Mbps", 2360 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/4017231344", 2361 | "评论 (@xhacker)": "工作日的中午基本坐满。少量座位有插座。西班牙拿铁默认偏甜了一点。", 2362 | "marker-color": "#F3AE1A", 2363 | "marker-symbol": "cafe" 2364 | }, 2365 | "geometry": { 2366 | "type": "Point", 2367 | "coordinates": [ 2368 | 116.449, 2369 | 39.934 2370 | ] 2371 | } 2372 | }, 2373 | { 2374 | "type": "Feature", 2375 | "properties": { 2376 | "名称": "星巴克(北京中关村大街第三店)", 2377 | "地址": "中关村大街15-9号", 2378 | "下载速度": "16.2 Mbps", 2379 | "Speedtest 链接": "https://www.speedtest.net/my-result/i/4060789707", 2380 | "评论 (@xhacker)": "两层的独栋星巴克,环境很好,还有街景。", 2381 | "marker-color": "#50C240", 2382 | "marker-symbol": "cafe" 2383 | }, 2384 | "geometry": { 2385 | "type": "Point", 2386 | "coordinates": [ 2387 | 116.309, 2388 | 39.9783 2389 | ] 2390 | } 2391 | } 2392 | ] 2393 | } 2394 | --------------------------------------------------------------------------------