Skip to content

Commit

Permalink
feat(markers): Use play/stop icons for start/end
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorgerhardt committed Nov 23, 2016
1 parent ac4dd69 commit 55e8e9b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/containers/indianapolis/map.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {Browser} from 'leaflet'
import {mapbox} from 'mapbox.js'
import React, {PropTypes} from 'react'
import {GeoJson, Map as LeafletMap, Marker, Popup, TileLayer, ZoomControl} from 'react-leaflet'

Expand All @@ -10,14 +9,15 @@ import messages from '../../utils/messages'
import TransitiveLayer from '../../components/transitive-map-layer'
import transitiveStyle from './transitive-style'

const startIcon = mapbox.marker.icon({
'marker-size': 'large',
'marker-symbol': 'star',
'marker-color': '#4269a4'
const startIcon = leafletIcon({
icon: 'play',
markerColor: 'darkblue'
})

const endIcon = leafletIcon({
icon: 'stop',
markerColor: 'orange'
})
const endIcon = leafletIcon({markerColor: 'darkblue'}) /* mapbox.marker.icon({
'marker-color': '#ff8c00'
})*/

export default class Map extends DeepEqual {
static propTypes = {
Expand Down

0 comments on commit 55e8e9b

Please sign in to comment.