symfony2 とVichGeographicalBundleでカスタム マーカーを設定するにはどうすればよいですか?
私のマップファイルコンストラクター:
public function __construct(EntityManager $em, $iconGenerator)
{
parent::__construct();
// configure your map in the constructor
// by setting the options
$this->setShowZoomControl(true);
$this->setZoom(15);
$this->setAutoZoom(false);
$this->setContainerId('map_canvas');
$this->setWidth(630);
$this->setHeight(200);
}
私の小枝の呼び出し:
{{ vichgeo_map_for('showShop',shop) }}
カスタム画像(image/custom.png)に設定する方法が見つからないマーカーを除いて、すべて正常に機能します。
config.yml にサービスを注入しようとしましたが、知識が不足しています。