pretix-map 0.1.4__py3-none-any.whl → 0.1.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pretix_map-0.1.6.dist-info/METADATA +88 -0
- {pretix_map-0.1.4.dist-info → pretix_map-0.1.6.dist-info}/RECORD +32 -30
- {pretix_map-0.1.4.dist-info → pretix_map-0.1.6.dist-info}/WHEEL +1 -1
- {pretix_map-0.1.4.dist-info → pretix_map-0.1.6.dist-info}/licenses/LICENSE +15 -15
- pretix_mapplugin/__init__.py +1 -1
- pretix_mapplugin/apps.py +28 -28
- pretix_mapplugin/geocoding.py +162 -102
- pretix_mapplugin/locale/de/LC_MESSAGES/django.po +12 -12
- pretix_mapplugin/locale/de_Informal/LC_MESSAGES/django.po +12 -12
- pretix_mapplugin/management/commands/geocode_existing_orders.py +271 -271
- pretix_mapplugin/migrations/0001_initial.py +27 -27
- pretix_mapplugin/migrations/0002_remove_ordergeocodedata_geocoded_timestamp_and_more.py +32 -32
- pretix_mapplugin/migrations/0003_mapmilestone.py +27 -0
- pretix_mapplugin/models.py +71 -47
- pretix_mapplugin/signals.py +77 -92
- pretix_mapplugin/static/pretix_mapplugin/css/salesmap.css +100 -51
- pretix_mapplugin/static/pretix_mapplugin/js/salesmap.js +611 -452
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/MarkerCluster.Default.css +59 -59
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/MarkerCluster.css +14 -14
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/leaflet-heat.js +10 -10
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/leaflet-src.esm.js +14419 -14419
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/leaflet-src.js +14512 -14512
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/leaflet.css +661 -661
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/leaflet.js +5 -5
- pretix_mapplugin/static/pretix_mapplugin/libs/leaflet-sales-map/leaflet.markercluster.js +2 -2
- pretix_mapplugin/tasks.py +144 -113
- pretix_mapplugin/templates/pretix_mapplugin/map_page.html +189 -88
- pretix_mapplugin/templates/pretix_mapplugin/milestones.html +53 -0
- pretix_mapplugin/urls.py +38 -21
- pretix_mapplugin/views.py +295 -163
- pretix_map-0.1.4.dist-info/METADATA +0 -195
- {pretix_map-0.1.4.dist-info → pretix_map-0.1.6.dist-info}/entry_points.txt +0 -0
- {pretix_map-0.1.4.dist-info → pretix_map-0.1.6.dist-info}/top_level.txt +0 -0
|
@@ -1,60 +1,60 @@
|
|
|
1
|
-
.marker-cluster-small {
|
|
2
|
-
background-color: rgba(181, 226, 140, 0.6);
|
|
3
|
-
}
|
|
4
|
-
.marker-cluster-small div {
|
|
5
|
-
background-color: rgba(110, 204, 57, 0.6);
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.marker-cluster-medium {
|
|
9
|
-
background-color: rgba(241, 211, 87, 0.6);
|
|
10
|
-
}
|
|
11
|
-
.marker-cluster-medium div {
|
|
12
|
-
background-color: rgba(240, 194, 12, 0.6);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.marker-cluster-large {
|
|
16
|
-
background-color: rgba(253, 156, 115, 0.6);
|
|
17
|
-
}
|
|
18
|
-
.marker-cluster-large div {
|
|
19
|
-
background-color: rgba(241, 128, 23, 0.6);
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
/* IE 6-8 fallback colors */
|
|
23
|
-
.leaflet-oldie .marker-cluster-small {
|
|
24
|
-
background-color: rgb(181, 226, 140);
|
|
25
|
-
}
|
|
26
|
-
.leaflet-oldie .marker-cluster-small div {
|
|
27
|
-
background-color: rgb(110, 204, 57);
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
.leaflet-oldie .marker-cluster-medium {
|
|
31
|
-
background-color: rgb(241, 211, 87);
|
|
32
|
-
}
|
|
33
|
-
.leaflet-oldie .marker-cluster-medium div {
|
|
34
|
-
background-color: rgb(240, 194, 12);
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.leaflet-oldie .marker-cluster-large {
|
|
38
|
-
background-color: rgb(253, 156, 115);
|
|
39
|
-
}
|
|
40
|
-
.leaflet-oldie .marker-cluster-large div {
|
|
41
|
-
background-color: rgb(241, 128, 23);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
.marker-cluster {
|
|
45
|
-
background-clip: padding-box;
|
|
46
|
-
border-radius: 20px;
|
|
47
|
-
}
|
|
48
|
-
.marker-cluster div {
|
|
49
|
-
width: 30px;
|
|
50
|
-
height: 30px;
|
|
51
|
-
margin-left: 5px;
|
|
52
|
-
margin-top: 5px;
|
|
53
|
-
|
|
54
|
-
text-align: center;
|
|
55
|
-
border-radius: 15px;
|
|
56
|
-
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
57
|
-
}
|
|
58
|
-
.marker-cluster span {
|
|
59
|
-
line-height: 30px;
|
|
1
|
+
.marker-cluster-small {
|
|
2
|
+
background-color: rgba(181, 226, 140, 0.6);
|
|
3
|
+
}
|
|
4
|
+
.marker-cluster-small div {
|
|
5
|
+
background-color: rgba(110, 204, 57, 0.6);
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.marker-cluster-medium {
|
|
9
|
+
background-color: rgba(241, 211, 87, 0.6);
|
|
10
|
+
}
|
|
11
|
+
.marker-cluster-medium div {
|
|
12
|
+
background-color: rgba(240, 194, 12, 0.6);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.marker-cluster-large {
|
|
16
|
+
background-color: rgba(253, 156, 115, 0.6);
|
|
17
|
+
}
|
|
18
|
+
.marker-cluster-large div {
|
|
19
|
+
background-color: rgba(241, 128, 23, 0.6);
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
/* IE 6-8 fallback colors */
|
|
23
|
+
.leaflet-oldie .marker-cluster-small {
|
|
24
|
+
background-color: rgb(181, 226, 140);
|
|
25
|
+
}
|
|
26
|
+
.leaflet-oldie .marker-cluster-small div {
|
|
27
|
+
background-color: rgb(110, 204, 57);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.leaflet-oldie .marker-cluster-medium {
|
|
31
|
+
background-color: rgb(241, 211, 87);
|
|
32
|
+
}
|
|
33
|
+
.leaflet-oldie .marker-cluster-medium div {
|
|
34
|
+
background-color: rgb(240, 194, 12);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.leaflet-oldie .marker-cluster-large {
|
|
38
|
+
background-color: rgb(253, 156, 115);
|
|
39
|
+
}
|
|
40
|
+
.leaflet-oldie .marker-cluster-large div {
|
|
41
|
+
background-color: rgb(241, 128, 23);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.marker-cluster {
|
|
45
|
+
background-clip: padding-box;
|
|
46
|
+
border-radius: 20px;
|
|
47
|
+
}
|
|
48
|
+
.marker-cluster div {
|
|
49
|
+
width: 30px;
|
|
50
|
+
height: 30px;
|
|
51
|
+
margin-left: 5px;
|
|
52
|
+
margin-top: 5px;
|
|
53
|
+
|
|
54
|
+
text-align: center;
|
|
55
|
+
border-radius: 15px;
|
|
56
|
+
font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
|
|
57
|
+
}
|
|
58
|
+
.marker-cluster span {
|
|
59
|
+
line-height: 30px;
|
|
60
60
|
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
|
|
2
|
-
-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
3
|
-
-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
4
|
-
-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
5
|
-
transition: transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
.leaflet-cluster-spider-leg {
|
|
9
|
-
/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
|
|
10
|
-
-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
|
|
11
|
-
-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
|
|
12
|
-
-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
|
|
13
|
-
transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
|
|
14
|
-
}
|
|
1
|
+
.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
|
|
2
|
+
-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
3
|
+
-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
4
|
+
-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
5
|
+
transition: transform 0.3s ease-out, opacity 0.3s ease-in;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.leaflet-cluster-spider-leg {
|
|
9
|
+
/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
|
|
10
|
+
-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
|
|
11
|
+
-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
|
|
12
|
+
-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
|
|
13
|
+
transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
|
|
14
|
+
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
/*
|
|
2
|
-
(c) 2014, Vladimir Agafonkin
|
|
3
|
-
simpleheat, a tiny JavaScript library for drawing heatmaps with Canvas
|
|
4
|
-
https://github.com/mourner/simpleheat
|
|
5
|
-
*/
|
|
6
|
-
!function(){"use strict";function t(i){return this instanceof t?(this._canvas=i="string"==typeof i?document.getElementById(i):i,this._ctx=i.getContext("2d"),this._width=i.width,this._height=i.height,this._max=1,void this.clear()):new t(i)}t.prototype={defaultRadius:25,defaultGradient:{.4:"blue",.6:"cyan",.7:"lime",.8:"yellow",1:"red"},data:function(t,i){return this._data=t,this},max:function(t){return this._max=t,this},add:function(t){return this._data.push(t),this},clear:function(){return this._data=[],this},radius:function(t,i){i=i||15;var a=this._circle=document.createElement("canvas"),s=a.getContext("2d"),e=this._r=t+i;return a.width=a.height=2*e,s.shadowOffsetX=s.shadowOffsetY=200,s.shadowBlur=i,s.shadowColor="black",s.beginPath(),s.arc(e-200,e-200,t,0,2*Math.PI,!0),s.closePath(),s.fill(),this},gradient:function(t){var i=document.createElement("canvas"),a=i.getContext("2d"),s=a.createLinearGradient(0,0,0,256);i.width=1,i.height=256;for(var e in t)s.addColorStop(e,t[e]);return a.fillStyle=s,a.fillRect(0,0,1,256),this._grad=a.getImageData(0,0,1,256).data,this},draw:function(t){this._circle||this.radius(this.defaultRadius),this._grad||this.gradient(this.defaultGradient);var i=this._ctx;i.clearRect(0,0,this._width,this._height);for(var a,s=0,e=this._data.length;e>s;s++)a=this._data[s],i.globalAlpha=Math.max(a[2]/this._max,t||.05),i.drawImage(this._circle,a[0]-this._r,a[1]-this._r);var n=i.getImageData(0,0,this._width,this._height);return this._colorize(n.data,this._grad),i.putImageData(n,0,0),this},_colorize:function(t,i){for(var a,s=3,e=t.length;e>s;s+=4)a=4*t[s],a&&(t[s-3]=i[a],t[s-2]=i[a+1],t[s-1]=i[a+2])}},window.simpleheat=t}(),/*
|
|
7
|
-
(c) 2014, Vladimir Agafonkin
|
|
8
|
-
Leaflet.heat, a tiny and fast heatmap plugin for Leaflet.
|
|
9
|
-
https://github.com/Leaflet/Leaflet.heat
|
|
10
|
-
*/
|
|
1
|
+
/*
|
|
2
|
+
(c) 2014, Vladimir Agafonkin
|
|
3
|
+
simpleheat, a tiny JavaScript library for drawing heatmaps with Canvas
|
|
4
|
+
https://github.com/mourner/simpleheat
|
|
5
|
+
*/
|
|
6
|
+
!function(){"use strict";function t(i){return this instanceof t?(this._canvas=i="string"==typeof i?document.getElementById(i):i,this._ctx=i.getContext("2d"),this._width=i.width,this._height=i.height,this._max=1,void this.clear()):new t(i)}t.prototype={defaultRadius:25,defaultGradient:{.4:"blue",.6:"cyan",.7:"lime",.8:"yellow",1:"red"},data:function(t,i){return this._data=t,this},max:function(t){return this._max=t,this},add:function(t){return this._data.push(t),this},clear:function(){return this._data=[],this},radius:function(t,i){i=i||15;var a=this._circle=document.createElement("canvas"),s=a.getContext("2d"),e=this._r=t+i;return a.width=a.height=2*e,s.shadowOffsetX=s.shadowOffsetY=200,s.shadowBlur=i,s.shadowColor="black",s.beginPath(),s.arc(e-200,e-200,t,0,2*Math.PI,!0),s.closePath(),s.fill(),this},gradient:function(t){var i=document.createElement("canvas"),a=i.getContext("2d"),s=a.createLinearGradient(0,0,0,256);i.width=1,i.height=256;for(var e in t)s.addColorStop(e,t[e]);return a.fillStyle=s,a.fillRect(0,0,1,256),this._grad=a.getImageData(0,0,1,256).data,this},draw:function(t){this._circle||this.radius(this.defaultRadius),this._grad||this.gradient(this.defaultGradient);var i=this._ctx;i.clearRect(0,0,this._width,this._height);for(var a,s=0,e=this._data.length;e>s;s++)a=this._data[s],i.globalAlpha=Math.max(a[2]/this._max,t||.05),i.drawImage(this._circle,a[0]-this._r,a[1]-this._r);var n=i.getImageData(0,0,this._width,this._height);return this._colorize(n.data,this._grad),i.putImageData(n,0,0),this},_colorize:function(t,i){for(var a,s=3,e=t.length;e>s;s+=4)a=4*t[s],a&&(t[s-3]=i[a],t[s-2]=i[a+1],t[s-1]=i[a+2])}},window.simpleheat=t}(),/*
|
|
7
|
+
(c) 2014, Vladimir Agafonkin
|
|
8
|
+
Leaflet.heat, a tiny and fast heatmap plugin for Leaflet.
|
|
9
|
+
https://github.com/Leaflet/Leaflet.heat
|
|
10
|
+
*/
|
|
11
11
|
L.HeatLayer=(L.Layer?L.Layer:L.Class).extend({initialize:function(t,i){this._latlngs=t,L.setOptions(this,i)},setLatLngs:function(t){return this._latlngs=t,this.redraw()},addLatLng:function(t){return this._latlngs.push(t),this.redraw()},setOptions:function(t){return L.setOptions(this,t),this._heat&&this._updateOptions(),this.redraw()},redraw:function(){return!this._heat||this._frame||this._map._animating||(this._frame=L.Util.requestAnimFrame(this._redraw,this)),this},onAdd:function(t){this._map=t,this._canvas||this._initCanvas(),t._panes.overlayPane.appendChild(this._canvas),t.on("moveend",this._reset,this),t.options.zoomAnimation&&L.Browser.any3d&&t.on("zoomanim",this._animateZoom,this),this._reset()},onRemove:function(t){t.getPanes().overlayPane.removeChild(this._canvas),t.off("moveend",this._reset,this),t.options.zoomAnimation&&t.off("zoomanim",this._animateZoom,this)},addTo:function(t){return t.addLayer(this),this},_initCanvas:function(){var t=this._canvas=L.DomUtil.create("canvas","leaflet-heatmap-layer leaflet-layer"),i=L.DomUtil.testProp(["transformOrigin","WebkitTransformOrigin","msTransformOrigin"]);t.style[i]="50% 50%";var a=this._map.getSize();t.width=a.x,t.height=a.y;var s=this._map.options.zoomAnimation&&L.Browser.any3d;L.DomUtil.addClass(t,"leaflet-zoom-"+(s?"animated":"hide")),this._heat=simpleheat(t),this._updateOptions()},_updateOptions:function(){this._heat.radius(this.options.radius||this._heat.defaultRadius,this.options.blur),this.options.gradient&&this._heat.gradient(this.options.gradient),this.options.max&&this._heat.max(this.options.max)},_reset:function(){var t=this._map.containerPointToLayerPoint([0,0]);L.DomUtil.setPosition(this._canvas,t);var i=this._map.getSize();this._heat._width!==i.x&&(this._canvas.width=this._heat._width=i.x),this._heat._height!==i.y&&(this._canvas.height=this._heat._height=i.y),this._redraw()},_redraw:function(){var t,i,a,s,e,n,h,o,r,d=[],_=this._heat._r,l=this._map.getSize(),m=new L.Bounds(L.point([-_,-_]),l.add([_,_])),c=void 0===this.options.max?1:this.options.max,u=void 0===this.options.maxZoom?this._map.getMaxZoom():this.options.maxZoom,f=1/Math.pow(2,Math.max(0,Math.min(u-this._map.getZoom(),12))),g=_/2,p=[],v=this._map._getMapPanePos(),w=v.x%g,y=v.y%g;for(t=0,i=this._latlngs.length;i>t;t++)if(a=this._map.latLngToContainerPoint(this._latlngs[t]),m.contains(a)){e=Math.floor((a.x-w)/g)+2,n=Math.floor((a.y-y)/g)+2;var x=void 0!==this._latlngs[t].alt?this._latlngs[t].alt:void 0!==this._latlngs[t][2]?+this._latlngs[t][2]:1;r=x*f,p[n]=p[n]||[],s=p[n][e],s?(s[0]=(s[0]*s[2]+a.x*r)/(s[2]+r),s[1]=(s[1]*s[2]+a.y*r)/(s[2]+r),s[2]+=r):p[n][e]=[a.x,a.y,r]}for(t=0,i=p.length;i>t;t++)if(p[t])for(h=0,o=p[t].length;o>h;h++)s=p[t][h],s&&d.push([Math.round(s[0]),Math.round(s[1]),Math.min(s[2],c)]);this._heat.data(d).draw(this.options.minOpacity),this._frame=null},_animateZoom:function(t){var i=this._map.getZoomScale(t.zoom),a=this._map._getCenterOffset(t.center)._multiplyBy(-i).subtract(this._map._getMapPanePos());L.DomUtil.setTransform?L.DomUtil.setTransform(this._canvas,a,i):this._canvas.style[L.DomUtil.TRANSFORM]=L.DomUtil.getTranslateString(a)+" scale("+i+")"}}),L.heatLayer=function(t,i){return new L.HeatLayer(t,i)};
|