0

Google Maps API v3 を使用してアプリケーションのラベル マーカーのフォントを変更するにはどうすればよいですか? Lato に変更してもまだ "arial" になっているのはなぜですか? :( コード:

  .labels {
 color: red;
 background-image:url('testemark.png');
 font-family: 'Lato', sans-serif;
 font-size: 10px;
 font-weight: bold;
 text-align: center;
 width: 77px;  
padding-top:5px;
padding-left:7.5px;
height:23px;
}

var marker2 = new MarkerWithLabel({
      position: new google.maps.LatLng(10,20),
      map: map,
      labelContent: "example2",
      labelAnchor: new google.maps.Point(10, 20),
      labelClass: "labels", // the CSS class for the label
    });

どうも

4

1 に答える 1

2

important-rule をフォーマットに追加します。

font-family: 'Lato', sans-serif   !important ;
于 2013-09-20T23:04:33.733 に答える