Windy Community
    • Unread
    • Categories
    • Groups
    • Go to windy.com
    • Register
    • Login
    1. Home
    2. sameh khemira
    S
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 3
    • Posts 11
    • Groups 0

    sameh khemira

    @sameh khemira

    0
    Reputation
    2
    Profile views
    11
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    sameh khemira Unfollow Follow

    Latest posts made by sameh khemira

    • RE: Options goes transparents after Init

      @Suty
      Yes I checked and I tried to only let the map in all the html component like this
      < div id="windy" style="width: 95%; height: 85%; ">
      And it is always the same problem

      posted in Bug Reports
      S
      sameh khemira
    • RE: Options goes transparents after Init

      @Suty the options are only visible at the beginning when the map is loading, as shown in this capture. I can see them when the background is grey. However, once the map finishes loading, the options become invisible
      33e95448-d409-47ef-9a43-14a9d19eace9-image.png
      I dont think there is other elements causing this issue in my html code .

      posted in Bug Reports
      S
      sameh khemira
    • RE: Options goes transparents after Init

      @Suty Hello I
      Here is the function where I load the libBoot using the script loader package

        initializeWindyMap(windyApiKey: string, lat: number, lon: number, zoom: number): Observable {
          const options = {
            key: windyApiKey, verbose: true, lat, lon, zoom,
          };
          return this.windyScriptLoaderService.loadScript('https://api.windy.com/assets/map-forecast/libBoot.js').pipe(switchMap(() => {
            return new Observable(observer => {
              windyInit(options, windyAPI => {
                this.map = windyAPI.map;
                observer.next();
                observer.complete();
              });
            });
          }));
        }
      

      I do use this function in my angular compenent like this :

      this.mapService
              .initializeWindyMap(
                this.windyApiKey,
                selectedRegion.center.lat,
                selectedRegion.center.lon,
                selectedRegion.zoom,
              )
              .subscribe(() => {
              // treatment to process
              });
      

      The map is displayed and initialized correctly each time. However, the map options are always not visible.
      Thank you

      posted in Bug Reports
      S
      sameh khemira
    • Options goes transparents after Init

      Hello,
      I am using windy api in my angular web app ,I have followed tha basic hello world example and I have used the package "ngx-script-loader to load the libBoot.js script.
      Every thing is working but the zoom and the others options on the left side of the map are not visible as well as the logo of windy on the top?
      3036b236-e619-4352-a130-722a5450cd6d-image.png

      However I noticed that when the map is charging and it has the grey color on the backgroud, I can see them but once the map colors changed, they are not visible anymore.
      29896b4a-8f7b-4a7b-8352-a78b4976bed1-image.png

      posted in Bug Reports
      S
      sameh khemira
    • RE: Options and logo are not visibles

      @Miggz-Cervantes did you get any news please ?

      posted in Windy API v4
      S
      sameh khemira
    • RE: Options and logo are not visibles

      I still have the same problem any new solutions please ?

      posted in Windy API v4
      S
      sameh khemira
    • RE: Options and logo are not visibles

      @Ondřej-Šutera Hello, do you have any news about this issues

      posted in Windy API v4
      S
      sameh khemira
    • RE: Options and logo are not visibles

      @Ondřej-Šutera
      Yes I have use the 'hello wold' example to add the windy Map.
      I used the package "ngx-script-loader to load the libBoot.js script beacuse am on an angular web app like this:

      this.scriptService.loadScript('https://api.windy.com/assets/map-forecast/libBoot.js').pipe(switchMap(() => {
            return new Observable(observer => {
              windyInit(options, windyAPI => {
                this.map = windyAPI.map;
                observer.next();
                observer.complete();
              });
            });
          }));
      

      And it works perfeclty the only problem I have is this issue with the options and the logo going invisbles after initiazling the map.

      posted in Windy API v4
      S
      sameh khemira
    • Options on the right side not visible

      I have an issue with the visibilty of the logo and the zoom options on the map. They are not visible when the map charges its colors.
      bd2a79e1-de0c-4878-a088-960e1eef82a6-image.png
      They are only visibles when the map is grey
      1596d3cf-967e-43c3-ba9c-6cb59455cbe3-image.png.

      posted in Windy API v4
      S
      sameh khemira
    • RE: Map API - Weather layer selection icons rendering incorrectly

      Hello, Is it normal to only have thoses three layers ? I have the same and I want to use the rain layer instead of wind. Should I have the premium version ? Thank you have a nice day

      posted in Windy API v4
      S
      sameh khemira