Ad Widget

Collapse

Geomaps just a bunch of random tiles

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • netadmintx
    Junior Member
    • Feb 2022
    • 3

    #1

    Geomaps just a bunch of random tiles

    On version 6.0 LTS. When I add a new Geomap widget and two hosts with latitude and longitude filled out, I just get a bunch of random map tiles and the + and - are just tiny little hyperinks.
    If I zoom in and out with the scroll wheel the tiles just jump around randomly.
    Only thing I can think is because I'm using Nginx instead of Apache, but I have not seen any issues with viewing anything else.

    Here's a picture:
    Click image for larger version

Name:	geomap widget.png
Views:	532
Size:	22.1 KB
ID:	440777

  • danielvelinov
    Junior Member
    • May 2021
    • 3

    #2
    I am having the exact same issue with any tile provider. I am using Zabbix 6.0.3 and nginx as frontend ssl proxy
    Appreciate if someone can assist.

    Comment

    • cyber
      Senior Member
      Zabbix Certified SpecialistZabbix Certified Professional
      • Dec 2006
      • 4807

      #3
      Isn't it your browsers connection, what is utilized for pulling map data? It really does not matter, what version of Zabbix you have there.. or what webserver...
      Last edited by cyber; 19-04-2022, 09:00. Reason: typos...

      Comment

      • danielvelinov
        Junior Member
        • May 2021
        • 3

        #4
        I tried with multiple browsers but same result. My Internet is stable and have no other rendering issues

        Comment

        • araneon
          Junior Member
          • Apr 2016
          • 28

          #5
          I have the same situation, tell me no one found a solution?

          Comment

          • araneon
            Junior Member
            • Apr 2016
            • 28

            #6
            Finally I found a solution, which is described in https://www.zabbix.com/documentation...n/known_issues

            Geomap widget error
            The maps in the Geomap widget may not load correctly, if you have upgraded from an older Zabbix version with NGINX and didn't switch to the new NGINX configuration file during the upgrade.

            To fix the issue, you can discard the old configuration file, use the configuration file from 6.0 package and reconfigure it as described in the download instructions in section e. Configure PHP for Zabbix frontend.

            Alternatively, you can manually edit an existing NGINX configuration file (typically, /etc/zabbix/nginx.conf). To do so, open the file and locate the following block:
            Code:
            location ~ /(api\/|conf[^\.]|include|locale|vendor) {
            deny all;
            return 404;
            }
            Then, replace this block with:

            Code:
            location ~ /(api\/|conf[^\.]|include|locale) {
            deny all;
            return 404;
            }
            
            location /vendor {
            deny all;
            return 404;
            }

            Comment


            • danielvelinov
              danielvelinov commented
              Editing a comment
              Works like a charm. Thanks

            • um3n
              um3n commented
              Editing a comment
              Thanks mate! This helps a lot and fixed my problem as well!
          • araneon
            Junior Member
            • Apr 2016
            • 28

            #7
            Great, glad to help
            Last edited by araneon; 09-06-2022, 12:12.

            Comment

            Working...