メキシコ料理屋に行ってきました。
カクテルも料理も美味しゅうございました。
お店は下記URLの支店。
場所はココのあたりなんですが、タクシーで行ってしまったので、良くわかんないデス。
Leopoldstrasse沿いで、mexikasという看板を探して下さい。
http://www.tripadvisor.co.uk/Restaurant_Review-g190454-d1636204-Reviews-Taqueria_Los_Mexikas-Vienna.html
2013年12月20日金曜日
2013年12月18日水曜日
leaflet
mobileではopenlayersより良いと書いてあるので、leaflet使ってみた。
sl4aで全画面表示させるのに手間取ったので、一応載せとく。
<!DOCTYPE html>
<html>
<head>
<title>leaflet</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js?2"></script>
<style>
*{margin:0px;padding:0px;}
html,body{height:100%;}
#map { width:100%; height:100%; }
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var map = new L.Map('map');
var tiles = new L.TileLayer(
'http://otile{s}.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.png',
{subdomains:'1234',attribution:'© mapquest'}
);
var pdx = new L.LatLng(45.0, 133.0);
map.addLayer(tiles).setView(pdx,14);
</script>
</body>
</html>
sl4aで全画面表示させるのに手間取ったので、一応載せとく。
<!DOCTYPE html>
<html>
<head>
<title>leaflet</title>
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.1/leaflet.js?2"></script>
<style>
*{margin:0px;padding:0px;}
html,body{height:100%;}
#map { width:100%; height:100%; }
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript">
var map = new L.Map('map');
var tiles = new L.TileLayer(
'http://otile{s}.mqcdn.com/tiles/1.0.0/map/{z}/{x}/{y}.png',
{subdomains:'1234',attribution:'© mapquest'}
);
var pdx = new L.LatLng(45.0, 133.0);
map.addLayer(tiles).setView(pdx,14);
</script>
</body>
</html>
2013年12月13日金曜日
oruxmapsにmapquestを追加する。
/mnt/sdcard/oruxmaps/mapfiles/onlinemapsources.xml
に
以下を追加する。uidはかぶらないように。
お約束ですが、自己責任で。
<onlinemapsource uid="9">
<name>MAP QUEST</name>
<url><![CDATA[http://otile{$s}.mqcdn.com/tiles/1.0.0/map/{$z}/{$x}/{$y}.jpg]]></url>
<minzoom>1</minzoom>
<maxzoom>19</maxzoom>
<projection>MERCATORESFERICA</projection>
<servers>1,2,3,4</servers>
<httpparam name=""></httpparam>
<cacheable>1</cacheable>
<downloadable>1</downloadable>
<xop></xop>
<yop></yop>
<zop></zop>
<qop></qop>
</onlinemapsource>
に
以下を追加する。uidはかぶらないように。
お約束ですが、自己責任で。
<onlinemapsource uid="9">
<name>MAP QUEST</name>
<url><![CDATA[http://otile{$s}.mqcdn.com/tiles/1.0.0/map/{$z}/{$x}/{$y}.jpg]]></url>
<minzoom>1</minzoom>
<maxzoom>19</maxzoom>
<projection>MERCATORESFERICA</projection>
<servers>1,2,3,4</servers>
<httpparam name=""></httpparam>
<cacheable>1</cacheable>
<downloadable>1</downloadable>
<xop></xop>
<yop></yop>
<zop></zop>
<qop></qop>
</onlinemapsource>
2013年12月8日日曜日
2013年12月7日土曜日
2013年12月4日水曜日
Scientific LinuxにPython 2.7を入れる (repositoryから)
http://people.redhat.com/bkabrda/scl_python27.repo
をダウンロードして、/etc/yum.repos.dにコピー。
%yum install python27
%scl enable python27 scl
をダウンロードして、/etc/yum.repos.dにコピー。
%yum install python27
%scl enable python27 scl
登録:
投稿 (Atom)