Display elements (list of elements) in an animated HTML5 canvas. This module is the light version of Tagcanvas. Unlike Tagcanvas Module no library required to run the animation of Items Canvas.
This module enables you to define on which zoom level you should see what layers. This module was initially build to be used with the Google Maps base layer.
Warning: after updating a field max length with this module the features overview is broken
It seems that after updating the field max lenght with this module an unexpected error occurs when you are working with features : "ieldUpdateForbiddenException: field_sql_storage cannot change the schema for an existing field with data". I am currently investigating this issue.
If you have found this module you have probably created a field with a max_length that is no longer valid. You are either unable to store a value since it exceeds max_length, or perhaps you want to shorten the max_length to reduce database size? The field API in Drupal 7 does not allow you to change this property when data is already stored for a field. When trying to edit the max_length property in the admin interface you will encounter the following message:
There is data for this field in the database. The field settings can no longer be changed.
Or perhaps you encountered the following issue while adding or updating field values programatically:
PDOException: SQLSTATE[22001]: String data, right truncated: 1406 Data too long for column 'X' at row X
There are multiple solutions here:
Drop all your data and modify the field max_lenght. Just kidding, this is not an option