mirror of
https://github.com/umap-project/umap.git
synced 2025-05-05 06:01:48 +02:00
Compare commits
No commits in common. "3720ccff01a3b18dff39a345de99de3d8abd1f62" and "32b9217bd28c11de774439cbb0ae80c4aea993b5" have entirely different histories.
3720ccff01
...
32b9217bd2
5 changed files with 4 additions and 33 deletions
|
@ -528,7 +528,6 @@ i.info {
|
|||
display: inline-block;
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
overflow: hidden;
|
||||
}
|
||||
.umap-pictogram-choice img {
|
||||
vertical-align: middle;
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg version="1.1" id="circle" width="15" height="15" viewBox="0 0 15 15" sodipodi:docname="marker.svg" inkscape:version="1.4.1 (93de688d07, 2025-03-30)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<svg version="1.1" id="circle" width="15" height="15" viewBox="0 0 15 15" sodipodi:docname="marker.svg" inkscape:version="1.3.2 (091e20ef0f, 2023-11-25, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs id="defs1" />
|
||||
<sodipodi:namedview id="namedview1" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:showpageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" inkscape:zoom="23.966903" inkscape:cx="7.8232888" inkscape:cy="5.9665616" inkscape:window-width="1920" inkscape:window-height="1011" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="circle" />
|
||||
<path d="M14,7.5c0,3.5899-2.9101,6.5-6.5,6.5S1,11.0899,1,7.5S3.9101,1,7.5,1S14,3.9101,14,7.5z" id="path1" style="fill:#ffffff;stroke:#3e4444;stroke-opacity:1;stroke-width:0.5;stroke-dasharray:none" />
|
||||
<sodipodi:namedview id="namedview1" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:showpageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" inkscape:zoom="53.666667" inkscape:cx="7.4906832" inkscape:cy="7.5" inkscape:window-width="1920" inkscape:window-height="1011" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="circle" />
|
||||
<path d="M14,7.5c0,3.5899-2.9101,6.5-6.5,6.5S1,11.0899,1,7.5S3.9101,1,7.5,1S14,3.9101,14,7.5z" id="path1" style="fill:#ffffff" />
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1 KiB |
|
@ -15,8 +15,6 @@ export function getClass(name) {
|
|||
return Ball
|
||||
case 'Drop':
|
||||
return Drop
|
||||
case 'Raw':
|
||||
return Raw
|
||||
default:
|
||||
return DefaultIcon
|
||||
}
|
||||
|
@ -154,17 +152,6 @@ const Circle = BaseIcon.extend({
|
|||
},
|
||||
})
|
||||
|
||||
const Raw = DefaultIcon.extend({
|
||||
default_options: {
|
||||
iconSize: new L.Point(48, 48),
|
||||
popupAnchor: new L.Point(0, 0),
|
||||
tooltipAnchor: new L.Point(0, 0),
|
||||
className: 'umap-raw-icon',
|
||||
},
|
||||
|
||||
_getColor: () => 'transparent',
|
||||
})
|
||||
|
||||
const Drop = DefaultIcon.extend({
|
||||
default_options: {
|
||||
iconAnchor: new L.Point(16, 42),
|
||||
|
|
|
@ -214,7 +214,6 @@ export const SCHEMA = {
|
|||
['Circle', translate('Circle')],
|
||||
['Drop', translate('Drop')],
|
||||
['Ball', translate('Ball')],
|
||||
['Raw', translate('None')],
|
||||
],
|
||||
default: 'Default',
|
||||
},
|
||||
|
|
|
@ -892,21 +892,7 @@ a.umap-control-caption,
|
|||
.umap-edit-enabled .readonly {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
.leaflet-container .umap-raw-icon img {
|
||||
max-height: 48px !important;
|
||||
max-width: 48px !important;
|
||||
}
|
||||
.umap-raw-icon {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
align-content: center;
|
||||
overflow: hidden;
|
||||
}
|
||||
.umap-raw-icon.umap-icon-active {
|
||||
box-shadow: var(--block-shadow);
|
||||
}
|
||||
|
||||
|
||||
/* ********************************* */
|
||||
/* Ajax loader */
|
||||
|
|
Loading…
Reference in a new issue