Created
April 1, 2012 19:01
-
-
Save yyyyyyuanfei/2277766 to your computer and use it in GitHub Desktop.
GoogleMaps with RichMarkers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Map | |
| constructor: (@el, @collection, template = "", @shadow = "") -> | |
| @options = | |
| zoom: 13 | |
| mapTypeId: google.maps.MapTypeId.ROADMAP | |
| @map = new google.maps.Map @el, @options | |
| @setTemplate template | |
| setTemplate: (template)-> | |
| @template = _.template(template) | |
| setMarkers: (collection) -> | |
| c = collection || @collection | |
| c = @chompCollection c | |
| c = @addNoise c | |
| @markers = [] | |
| for o in c | |
| latlng = new google.maps.LatLng o.lat, o.lng | |
| options = | |
| position: latlng | |
| content: @template(o) | |
| shadow: @shadow | |
| marker = null | |
| if not (options.content) | |
| marker = new google.maps.Marker(options) | |
| else | |
| marker = new RichMarker(options) | |
| @markers.push(marker) | |
| mcOptions = | |
| gridSize: 50 | |
| maxZoom: 15 | |
| mc = new MarkerClusterer(@map, @markers, mcOptions) | |
| @fitBoundsWithMarkers() | |
| fitBoundsWithMarkers: (markers) -> | |
| markers ||= @markers | |
| bounds = new google.maps.LatLngBounds() | |
| for o in markers | |
| bounds.extend o.position | |
| @map.fitBounds bounds | |
| chompCollection: (collection) -> | |
| _.chain(collection) | |
| .reject( (o)-> | |
| # 去掉没有经纬度的活动 | |
| not (o.lat and o.lng) | |
| ) | |
| .reject( (o)-> | |
| # 去掉不是被访问用户的活动, 如果指定了用户 | |
| return user_id != o.user.id unless typeof user_id == 'undefined' | |
| false | |
| ) | |
| .sortBy( (o)-> | |
| [o.lat, o.lng] | |
| ) | |
| .value() | |
| addNoise: (collection) -> | |
| i = 0 | |
| for curr in collection | |
| if i++ == 0 | |
| continue | |
| prev = collection[i - 1] | |
| if _.isEqual([prev.lat, prev.lng], [curr.lat, curr.lng]) | |
| [collection[i - 1].lat, collection[i - 1].lng] = [@doAddNoise(prev.lat), @doAddNoise(prev.lng)] | |
| collection | |
| doAddNoise: (flo, precious = 1e-3) -> | |
| flo += (Math.random() - 0.5 ) * precious |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment