Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 3560 |
Technical Name |
lxl_map_widget |
License | LGPL-3 |
Website | http://loxeltechnology.com |
Availability |
Odoo Online
Odoo.sh
On Premise
|
Lines of code | 3560 |
Technical Name |
lxl_map_widget |
License | LGPL-3 |
Website | http://loxeltechnology.com |
OVERVIEW
Overview:
Introducing the Map View application, designed to enhance your data visualization experience. This application provides a dynamic map view that integrates seamlessly with any Odoo model, enabling you to visualize geographical data points with ease. Its simple yet powerful group by and filter options ensure that you can customize the map to meet your specific needs without any hassle.
Introducing the Map View application, designed to enhance your data visualization experience. This application provides a dynamic map view that integrates seamlessly with any Odoo model, enabling you to visualize geographical data points with ease. Its simple yet powerful group by and filter options ensure that you can customize the map to meet your specific needs without any hassle.
Key Features
-
Universal Model Integration:
- Compatible with any Odoo model.
- Easy to implement with minimal coding.
-
Interactive Map Interface:
- Intuitive and user-friendly map view.
- Pinpoint locations with detailed information.
-
Advanced Group By Functionality:
- Group data points based on various criteria.
- Visualize grouped data with distinct markers and colors.
- Robust Filtering Options:
- Apply filters to refine the data displayed on the map.
- Combine multiple filters for precise data analysis.
- Customization and Flexibility:
- Configure the map view to suit different models and data types.
- Customize information pop-ups.
- Performance Optimization:
- Efficient handling of large datasets.
- Fast rendering and smooth interactions.
Usage:
With its straightforward implementation process, you can easily integrate the Interactive Map View into your Odoo instance.
Benefits:
Enhance data visualization and analysis.
Improve decision-making with geographical insights.
Simplify complex data with intuitive visual tools.
Whether you're managing sales territories, tracking deliveries, or analyzing market trends, the Interactive Map View application for Odoo empowers you to make informed decisions with geographical context.
SCREENSHOTS
SETTING PAGE

SALE ORDER

MAP VIEW PAGE


Map View Filter


flow this code to integrate with your model :
1 - Add you map view code :
2 - Inherit action and add 'map' to view_mode:
1 - Add you map view code :
<record id="view_id" model="ir.ui.view">
<field name="name">your view name</field>
<field name="model">your model</field>
<field name="arch" type="xml">
<map>
<field name="longitude" option="longitude"/> <!--REQUIRED-->
<field name="latitude" option="latitude"/> <!--REQUIRED-->
<popup>
<b>
<field name="name" open="1"/> <!--Open the when you click att this field -->
</b>
<hr/>
<div>
Customer : <field name="partner_id" style="display:inline;"/>
</div>
<div style="text-align: right;
margin-top: 9px;
font-weight: bold;
color: #878787;">
Total : <field name="amount_total" style="display:inline;"/>
<field name="currency_id" style="display:inline;"/>
</div>
</popup>
</map>
</field>
</record>
<record id="action_id" model="ir.actions.act_window">
<field name="view_mode">tree,map,form</field>
</record>
SUPPORT
Please log in to comment on this module