OpenLayers.Layer.Vector

河川のデータを読み込もうと努力中
データの変換はQGISを使用
座標系をEPSG:900913(Googleの座標系)にしないと上手くプロットできない。
WGS84でロードして欲しいんだけど、異なる座標系はダメなの?><


//河川データ用スタイル設定
var rivstyles = new OpenLayers.StyleMap({
"default": { //通常状態
strokeWidth: 4,
strokeColor: "#ff0000"
},
"select": { //選択状態
strokeColor: "#0099cc",
strokeWidth: 4
}
});

//河川データを読み込む
var rivers = new OpenLayers.Layer.Vector("river", {
strategies: [new OpenLayers.Strategy.Fixed()],
protocol: new OpenLayers.Protocol.HTTP({
url: "data/river.json",
format: new OpenLayers.Format.GeoJSON()
}),
styleMap: rivstyles
});

map.addLayer(rivers);