MoonE

Results 55 comments of MoonE

Check that the remote url is correct in `.git/config` of your overlay (might be at `/var/db/repos/jorigicio` or `/var/lib/layman/jorgicio`). ```ini [remote "origin"] url = https://github.com/jorgicio/jorgicio-gentoo-overlay.git fetch = +refs/heads/main:refs/remotes/origin/main ```

You have your vector layer below the tile layer, try putting the tile layer first in the `layers` array or set a higher `zIndex` on the vector layer.

The geometry, by default, is stored as a property on the Feature with the name `geometry` and is accessible by either `getGeometry()` or `get('geometry')`. Using `setGeometryName('Some Place')` it tries to...

Using the `scale` option is the correct way to change the rendered size of your icon. `imgSize` and `size` are not meant for this. See the [Icon documentation](https://openlayers.org/en/latest/apidoc/module-ol_style_Icon-Icon.html) for an...

This should give you the current circle radius: ```js let circle; function updateRadius() { const radius = circle ? circle.getRadius() : null; console.log('radius', radius); } draw.on('drawstart', function (evt) { geometry...

Looks like it with `displacement: [0, 100 / (0.2 + 0.2*markernumber)]` they are aligned at the bottom. Unexpected indeed.

You are correct in assuming that `render` is called on animation frames while `renderSync` renders immediatly. Assuming you are using a `ol/source/ImageStatic`. You need to preload the image which there...

In previous versions snapTo always returned an object with `snapped` set to a boolean, Since 6.14.0 it only returns an object when it snapped to something. https://github.com/openlayers/openlayers/commit/49acb39f72833e8db34c8115d621ca6410738281

You can do this with a custom style function: ```js if ('ontouchstart' in window) { const originalStyleFn = draw.getOverlay().getStyle(); let drawing = false; draw.getOverlay().setStyle(function (feature, resolution) { return drawing ?...

WrapX has been implemented with #13528, but it is not yet released. In case you are using [npm](https://www.npmjs.com/package/ol) you can use ol@dev to get the latest version from master. Working...