1
0
Fork 0
forked from 0x2620/oxjs
oxjs/source/UI/js/Map/MapMarkerImage.js

63 lines
2 KiB
JavaScript
Raw Normal View History

2011-11-05 17:46:53 +01:00
'use strict';
2011-05-16 12:49:48 +02:00
/*@
2012-05-22 15:14:40 +02:00
Ox.MapMarkerImage <f> MapMarkerImage Object
2012-05-31 12:32:54 +02:00
(options) -> <o> google.maps.MarkerImage
2011-05-16 12:49:48 +02:00
options <o> Options object
color <a|[255, 0, 0]> marker color
mode <s|normal> can be: normal, selected, editing
size <n|16> size
type <s|place> can be: place, result, rectangle
@*/
Ox.MapMarkerImage = (function() {
var cache = {};
return function(options) {
options = Ox.extend({
color: [255, 0, 0],
mode: 'normal', // normal, selected, editing
rectangle: false,
size: 16,
2012-05-26 15:48:19 +00:00
type: 'place' // place, result
}, options);
var index = [
2012-12-28 18:00:34 +01:00
options.type, options.mode, options.size, options.color.join(',')
].join(';'),
themeData = Ox.Theme.getThemeData();
if (!cache[index]) {
var color = options.rectangle ? [0, 0, 0, 0]
2012-05-24 09:45:33 +02:00
: options.color.concat(
2012-01-17 23:26:26 +05:30
[options.type == 'place' ? 0.75 : 0.25]
),
2012-05-24 09:45:33 +02:00
border = (
2012-12-28 18:00:34 +01:00
options.mode == 'normal' ? themeData.mapPlaceBorder
: options.mode == 'selected' ? themeData.mapPlaceSelectedBorder
: themeData.mapPlaceEditingBorder
2012-05-24 09:45:33 +02:00
).concat([options.type == 'result' ? 0.5 : 1]),
c = Ox.canvas(options.size, options.size),
image,
r = options.size / 2;
c.context.fillStyle = 'rgba(' + color.join(', ') + ')';
c.context.arc(r, r, r - 2, 0, 360);
c.context.fill();
c.context.beginPath();
c.context.lineWidth = 2;
2011-10-31 17:00:26 +00:00
c.context.strokeStyle = 'rgba(' + border.join(', ') + ')';
c.context.arc(r, r, r - 1, 0, 360);
c.context.stroke();
2025-08-05 18:50:06 +02:00
cache[index] = document.createElement('img')
cache[index].src = c.canvas.toDataURL()
cache[index].width = options.size
cache[index].height = options.size
}
return cache[index];
}
2011-05-16 12:49:48 +02:00
}());