Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

entry type:layer to replace mvt_clone #1386

Merged
merged 28 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a5f93d4
entry type:layer to replace mvt_clone
dbauszus-glx Jul 18, 2024
9ca5e5a
Merge branch 'main' into layer-entry
dbauszus-glx Jul 18, 2024
8615a95
featureLookup query
dbauszus-glx Jul 19, 2024
3184573
disable view and hide layer with failed featurelookup query
dbauszus-glx Jul 19, 2024
3def9d9
featureLookup fix
dbauszus-glx Jul 19, 2024
9e3feb3
add featureSetQuery
dbauszus-glx Jul 19, 2024
2f3fdd3
Merge branch 'main' into layer-entry
dbauszus-glx Sep 11, 2024
3aedb61
fix featureLookupQuery return
dbauszus-glx Sep 11, 2024
a1e7f8a
Merge branch 'main' into layer-entry
dbauszus-glx Sep 13, 2024
a6103c3
location.layers bug discovery
dbauszus-glx Sep 13, 2024
1c24816
merge highlight interaction changes
dbauszus-glx Sep 24, 2024
36fcdea
Merge branch 'main' into layer-entry
RobAndrewHurst Oct 2, 2024
f5a97c3
Merge branch 'main' into layer-entry
dbauszus-glx Oct 11, 2024
0361c80
update merge
dbauszus-glx Oct 11, 2024
3d03dd2
Update featureStyle and addLayer methods.
dbauszus-glx Oct 11, 2024
2aa378c
Merge branch 'main' into layer-entry
dbauszus-glx Oct 18, 2024
6edcf1f
remove log
RobAndrewHurst Oct 18, 2024
a4edfd9
getInfoj layer entry fix
RobAndrewHurst Oct 18, 2024
c0953d1
Update layer module & tests
RobAndrewHurst Oct 18, 2024
6707cc7
Merge branch 'main' into layer-entry
RobAndrewHurst Oct 21, 2024
7061808
Merge branch 'main' into layer-entry
simon-leech Oct 22, 2024
a964e07
update resources
RobAndrewHurst Oct 22, 2024
b81cd41
replaceChildren in layer style panel
dbauszus-glx Oct 22, 2024
213032f
Merge branch 'layer-entry' of https://github.com/dbauszus-glx/xyz_dev…
dbauszus-glx Oct 22, 2024
b61a056
Update colours of mvt layer
RobAndrewHurst Oct 22, 2024
1700fe6
Update mvt clone assets
RobAndrewHurst Oct 22, 2024
dd6b6eb
Update entry featureLookup on layer entries
RobAndrewHurst Oct 22, 2024
bc84697
Update entry featureLookup on layer entries
RobAndrewHurst Oct 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/layer/_layer.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The individual mapp layer modules are exported as mapp.layer{} object to the map
@global
@typedef {Object} layer
A mapp-layer object is a decorated JSON layer object which has been added to a mapview.
@property {string} layer.srid='3857' Feature layer require a spatial reference identifier (SRID).
@property {object} layer.L Openlayers Layer object.
@property {boolean} layer.display Whether the layer should be displayed.
@property {layer-style} layer.style The mapp-layer style configuration.
Expand Down
2 changes: 1 addition & 1 deletion lib/layer/featureHover.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function (feature, layer) {

const paramString = mapp.utils.paramString({
locale: layer.mapview.locale.key,
layer: layer.key,
layer: layer.Key || layer.key,
filter: feature.properties.count > 1 && layer.filter?.current,
template: layer.style.hover.query || 'infotip',
qID: layer.qID,
Expand Down
Loading
Loading