Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 | import { sm } from '../util' import Point from './point' /** * Place: a Point subclass representing a 'place' that can be rendered on the * map. A place is a point *other* than a transit stop/station, e.g. a home/work * location, a point of interest, etc. */ export default class Place extends Point { /** * the constructor */ constructor(data) { super(data) if (data && data.place_lat && data.place_lon) { const xy = sm.forward([data.place_lon, data.place_lat]) this.worldX = xy[0] this.worldY = xy[1] } this.zIndex = 100000 } /** * Get Type */ getType() { return 'PLACE' } /** * Get ID */ getId() { return this.place_id } /** * Get Name */ getName() { return this.place_name } /** * Get lat */ getLat() { return this.place_lat } /** * Get lon */ getLon() { return this.place_lon } containsSegmentEndPoint() { return true } containsFromPoint() { return this.getId() === 'from' } containsToPoint() { return this.getId() === 'to' } addRenderData(pointInfo) { this.renderData.push(pointInfo) } getRenderDataArray() { return this.renderData } clearRenderData() { this.renderData = [] } /** * Draw a place * * @param {Display} display */ render(display) { super.render(display) const styler = display.styler if (!this.renderData) return const displayStyle = styler.compute2('places', 'display', this) if (displayStyle === 'none') return this.renderXY = { x: display.xScale.compute( display.activeZoomFactors.useGeographicRendering ? this.worldX : this.graphVertex.x ), y: display.yScale.compute( display.activeZoomFactors.useGeographicRendering ? this.worldY : this.graphVertex.y ) } const radius = styler.compute2('places', 'r', this) || 10 display.drawCircle(this.renderXY, { fill: styler.compute2('places', 'fill', this) || '#fff', r: radius, stroke: styler.compute2('places', 'stroke', this) || '#000', 'stroke-width': styler.compute2('places', 'stroke-width', this) || 2 }) this.markerBBox = { height: radius * 2, width: radius * 2, x: this.renderXY.x - radius, y: this.renderXY.y - radius } } } |